@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Root Font Variables */
:root {
    --primary-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --heading-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --tech-font: 'Orbitron', 'Courier New', monospace;
}

/* Base Typography */
* {
    font-family: var(--primary-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Text */
body {
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    background: #191919;
    color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
    margin-top: 120px;
    padding-top: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    background: #D10506;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    will-change: transform;
    backface-visibility: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 1rem;
    left: 2rem;
    right: 2rem;
    width: auto;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #D10506, #D10506);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    flex: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(209, 5, 6, 0.5));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(209, 5, 6, 0.5));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 2;
    justify-content: center;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Header Search Bar */
.header-search-wrapper {
    position: relative;
    width: 300px;
    margin: 0 2rem;
}

.header-search-input {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header-search-input:focus {
    outline: none;
    border-color: #D10506;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(209, 5, 6, 0.3);
}

.header-search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #D10506, #D10506);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    z-index: 5;
    padding: 0;
}

.header-search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(209, 5, 6, 0.4);
}

.header-search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Header Search Suggestions */
.header-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(209, 5, 6, 0.2);
    border-top: none;
    border-radius: 0 0 15px 15px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    backdrop-filter: blur(10px);
    margin-top: -5px;
}

.header-search-suggestions.active {
    display: block;
}

.header-search-suggestions .suggestion-item {
    padding: 0.6rem 1rem;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.header-search-suggestions .suggestion-item:hover {
    background: rgba(209, 5, 6, 0.1);
    padding-left: 1.2rem;
}

.header-search-suggestions .suggestion-item i {
    color: #D10506;
    font-size: 0.8rem;
}

.header-search-suggestions .suggestion-item:last-child {
    border-bottom: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #D10506, #D10506);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #D10506;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #D10506;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Button styling for Book for meeting */
.book-meeting-btn {
    background: linear-gradient(45deg, #D10506, #D10506);
    color: #FFFFFF !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(209, 5, 6, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.book-meeting-btn::after {
    display: none;
}

.book-meeting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 5, 6, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(209, 5, 6, 0.08), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(209, 5, 6, 0.08), transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Hero Container - Two Column Layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    width: 90%;
    z-index: 2;
    position: relative;
    align-items: center;
}

/* Left Side - Search */
.hero-search {
    text-align: left;
}

.hero-search h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    outline: none;
    border-color: #D10506;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(209, 5, 6, 0.3);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #D10506, #D10506);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    z-index: 5;
    padding: 0;
    box-shadow: 0 4px 15px rgba(209, 5, 6, 0.3);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(209, 5, 6, 0.4);
}

.search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(209, 5, 6, 0.2);
    border-top: none;
    border-radius: 0 0 15px 15px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    backdrop-filter: blur(10px);
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 0.75rem 1.2rem;
    color: #ffffff;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.suggestion-item:hover {
    background: rgba(209, 5, 6, 0.1);
    padding-left: 1.5rem;
}

.suggestion-item i {
    color: #D10506;
    font-size: 0.9rem;
}

.suggestion-item:last-child {
    border-bottom: none;
}

/* Right Side - Content */
.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    text-align: left;
}

.hero h1 span {
    background: linear-gradient(45deg, #D10506, #D10506);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #D10506, #D10506);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::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.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(209, 5, 6, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #D10506, #D10506);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Why Choose Section */

.why-choose-section {
    text-align: center;
    padding: 80px 20px;
    animation: fadeInUp 1s ease-out;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    color: white;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
}

.section-title .highlight {
    font-weight: 700;
    background: linear-gradient(45deg, #D10506, #D10506);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 0 95px;
}

.company-card {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.company-card:hover::before {
    transform: translateX(100%);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.our-company {
    background: rgba(209, 5, 6, 0.08);
    border: 2px solid rgba(209, 5, 6, 0.25);
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #D10506, #D10506);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
}

.company-name {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.other-agencies .company-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
}

.feature-item:nth-child(even) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.our-company .feature-item:hover {
    background: rgba(209, 5, 6, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-icon {
    background: linear-gradient(45deg, #D10506, #D10506);
    border-radius: 50%;
    position: relative;
}

.check-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.cross-icon {
    background: linear-gradient(45deg, #310505, #83081b);
    border-radius: 50%;
    position: relative;
}

.cross-icon::after {
    content: '✗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.bonus-title {
    color: #D10506;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
    padding-left: 10px;
    text-align: left;
}

.bonus-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 12px;
    background: rgba(209, 5, 6, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bonus-text {
    font-size: 12px;
}

.bonus-item:hover {
    background: rgba(209, 5, 6, 0.12);
    transform: scale(1.02);
}

.bonus-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #D10506, #D10506);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
}

.bonus-icon::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .section-title {
        font-size: 36px;
    }

    .company-card {
        padding: 30px 20px;
    }

    /* Hero Responsive */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-search {
        text-align: center;
    }

    .hero-search h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        text-align: center;
    }
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: radial-gradient(circle at top, rgba(209,5,6,0.08), rgba(209,5,6,0.02), #191919);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    cursor: pointer;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.service-card .service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        rgba(209, 5, 6, 0.18),
        rgba(209, 5, 6, 0.18),
        rgba(209, 5, 6, 0.18)
    );
    animation: rotateGlow 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(209, 5, 6, 0.12);
    border-color: rgba(209, 5, 6, 0.25);
}

.service-icon {
    font-size: 3rem;
    color: #D10506;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(209, 5, 6, 0.6);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    text-shadow: 0 0 35px rgba(209, 5, 6, 1);
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    display: inline-block;
    color: #D10506;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: white;
    text-shadow: 0 0 10px #D10506;
}

/* Floating Animation for Cards */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.service-card:nth-child(even) {
    animation: floatUpDown 5s ease-in-out infinite;
}
.service-card:nth-child(odd) {
    animation: floatUpDown 5s ease-in-out infinite 2.5s;
}


/* About Section */
.about {
    padding: 5rem 5%;
    background: radial-gradient(circle at top left, #0a0a0a, #0e0e0e);
    position: relative;
    overflow: hidden;
}

/* Subtle moving gradient overlay */
.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(209,5,6,0.05), rgba(209,5,6,0.05));
    animation: about-bg-move 20s linear infinite;
}
@keyframes about-bg-move {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #D10506, #D10506);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* Mission Box */
.mission-box {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid #D10506;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.mission-box i {
    font-size: 2rem;
    color: #D10506;
    margin-bottom: 0.5rem;
}
.mission-box:hover {
    background: rgba(209,5,6,0.08);
    transform: translateX(5px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.stat-item {
    text-align: center;
}
.stat-item h3 {
    font-size: 2rem;
    color: #D10506;
}
.stat-item p {
    color: #aaa;
    font-size: 0.9rem;
}

/* About Image Styling */
.about-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #D10506, #D10506);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image .image-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image .image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-image .image-overlay i {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}
.about-image .image-overlay span {
    display: block;
    font-size: 3rem;
    font-weight: bold;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Meeting Booking Section */
.meeting {
  padding: 5rem 5%;
  background: #0d0d0d;
  text-align: center;
}

option {
  background: #0d0d0d;
  color: #ffffff;   
}

.meeting-form {
  max-width: 600px;
  margin: 2rem auto;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #cccccc;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
    border-color: #D10506;
    box-shadow: 0 0 10px rgba(209, 5, 6, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #D10506, #D10506);
    color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(209, 5, 6, 0.4);
}

/* Success message */
.success-message {
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
    color: #D10506;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  display: none;
  animation: slideInUp 0.4s ease;
}

.success-message.success {
  background: rgba(0, 200, 100, 0.1);
  border-color: rgba(0, 200, 100, 0.5);
  color: #00c864;
  border-left: 4px solid #00c864;
}

.success-message.error {
  background: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  border-left: 4px solid #ff6b6b;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
    background: linear-gradient(145deg, #0a0a0a, #121212);
    color: #fff;
    padding: 3rem 5% 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Container Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Section Titles */
.footer-section h3, 
.footer-section h4 {
    margin-bottom: 1rem;
    color: #D10506;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #D10506;
    left: 0;
    bottom: -5px;
}

/* Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D10506;
    padding-left: 5px;
}

/* Contact Info */
.contact-info p {
    margin: 0.5rem 0;
}

.contact-info i {
    margin-right: 8px;
    color: #D10506;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D10506;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(45deg, #D10506, #D10506);
    transform: translateY(-4px) scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

/* Background Animated Overlay */
footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(209,5,6,0.08) 0%, transparent 70%);
    animation: footer-glow 10s infinite linear;
}

@keyframes footer-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .header-search-wrapper {
        width: 200px;
        margin: 0 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        gap: 1rem;
        padding: 2rem 1rem;
        list-style: none;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem;
        text-align: center;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-right: 1rem;
    }

    .nav-container {
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        color: #D10506;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-right {
        display: flex !important;
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 76%;
        transform: translateX(-50%);
        z-index: 999;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero,
    .services,
    .about,
    .contact {
        padding: 3rem 5%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .section-title {
        font-size: 36px;
    }

    .company-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    #cursor {
        display: none !important;
    }

    nav {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        border-radius: 12px;
    }

    .nav-links {
        top: 70px !important;
    }

    .hamburger span {
        width: 20px;
        height: 2.5px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stat-item h3 {
        font-size: 1.2rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .meeting-form {
        padding: 1.5rem 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo img {
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(209, 5, 6, 0.6));
    transform-origin: center;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



@media (max-width: 768px) { /* target mobile & small tablets */
    #cursor {
        display: none !important;
    }
}

/* Team Section */
.team {
    padding: 6rem 5%;
    background: radial-gradient(circle at bottom, rgba(209, 5, 6, 0.05), rgba(209, 5, 6, 0.01), #191919);
    position: relative;
    overflow: hidden;
}

.team .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team .section-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.team .section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: end;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(209, 5, 6, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: rgba(209, 5, 6, 0.25);
    box-shadow: 0 15px 40px rgba(209, 5, 6, 0.15);
}

.team-member:hover::before {
    opacity: 1;
}

.team-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(209, 5, 6, 0.3);
    position: relative;
    z-index: 2;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.team-role {
    color: #D10506;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.team-member.ceo {
    grid-column: 2;
    grid-row: 1;
}

.team-member.cmo {
    grid-column: 1;
    grid-row: 2;
}

.team-member.coo {
    grid-column: 3;
    grid-row: 2;
}

.team-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.cmo , .coo {
    top: -340px;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member.ceo,
    .team-member.cmo,
    .team-member.coo {
        grid-column: 1;
        grid-row: auto;
    }

    .cmo , .coo {
        top: 0;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 4rem 5%;
    }

    .team .section-title {
        font-size: 2rem;
    }

    .team-image {
        width: 300px;
        height: 300px;
    }

    .team-member {
        padding: 1.5rem;
    }

    .cmo , .coo {
        top: 0;
    }
}
