/*==========================================*/
/* Nexsone Website - Professional Design */
/*==========================================*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #222222;
    background-color: #ffffff;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    /* Security: Prevent XSS by disabling script execution in user-generated content */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    cursor: default;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.04em;
    color: #00bbff;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 51, 102, 0.15);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: 2.5rem;
    color: #00bbff;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #00bbff;
    border-radius: 2px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: 1.8rem;
    color: #00bbff;
}

p {
    margin-bottom: 1rem;
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 60px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(0, 187, 255, 0.18);
}

.cta-button.primary {
    background: linear-gradient(135deg, #00bbff 0%, #00bbff 100%);
    color: white;
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #0099cc 0%, #00bbff 100%);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 187, 255, 0.35);
}

.cta-button.secondary {
    background: transparent;
    color: #00bbff;
    border: 2px solid #00bbff;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #00bbff 0%, #0099cc 100%);
    color: white;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 187, 255, 0.35);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 42px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 51, 102, 0.15);
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000; /* Black color for 'Nex' */
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.logo-sone {
    color: #00bbff; /* Dark blue color for 'sone' for more professional look */
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    width: 28px;
    height: 28px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    justify-content: space-around;
    align-items: center;
}

.hamburger:hover {
    transform: scale(1.05);
}

.hamburger:hover .bar {
    background-color: #00bbff;
}

.bar {
    width: 22px;
    height: 3px;
    background-color: #00bbff;
    transition: 0.4s;
    border-radius: 2px;
    position: relative;
    transform-origin: center;
    transition: all 0.4s ease;
    display: block;
}

.nav-menu {
    display: flex;
}

.nav-menu.active {
    display: flex;
    position: fixed;
    left: -100%;
    top: 85px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 35px 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 187, 255, 0.1);
    z-index: 999;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
    color: #333333;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
    color: #00bbff;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #00bbff;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 5px 15px rgba(0, 187, 255, 0.3);
    width: 250px;
}

.search-box input {
    border: none;
    padding: 10px 15px;
    border-radius: 50px 0 0 50px;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
    background: transparent;
}

.search-box button {
    border: none;
    background: #00bbff;
    color: white;
    padding: 10px 15px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #00bbff;
}

/* Compact Header Styles */
.compact-header header {
    padding: 10px 0;
}

.compact-header .header-content {
    gap: 10px;
}

.compact-header .logo {
    height: 32px;
}

.compact-header .logo-text {
    font-size: 1.6rem;
}

.compact-header .nav-link {
    font-size: 0.85rem;
    padding: 5px 8px;
}

.compact-header .search-box {
    width: 150px;
    padding: 3px;
}

.compact-header .search-box input {
    padding: 6px 10px;
    font-size: 0.8rem;
}

.compact-header .hamburger {
    width: 24px;
    height: 24px;
}

.compact-header .bar {
    width: 18px;
    height: 2px;
}

.search-icon {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333333;
    font-size: 1.2rem;
    padding: 8px;
    transition: color 0.3s ease;
    display: none; /* Hidden by default, shown on mobile */
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    min-width: 36px;
    min-height: 36px;
    flex-shrink: 0;
}

.search-icon:hover {
    color: #00bbff;
    background-color: rgba(0, 187, 255, 0.1);
}

/* Mobile Search Modal */
.mobile-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-search-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.mobile-search-box {
    display: flex;
    align-items: center;
    background: #f5f7fa;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-search-box input {
    border: none;
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
    outline: none;
    width: 100%;
    font-size: 1rem;
    background: transparent;
}

.mobile-search-box button {
    border: none;
    background: #00bbff;
    color: white;
    padding: 15px 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.mobile-search-box button:hover {
    background: #00bbff;
}

.close-search-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.close-search-btn:hover {
    background: #f5f7fa;
}

/* Search Results */
.search-results {
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.search-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-result-item {
    border-bottom: 1px solid #eee;
    padding: 12px 15px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.search-result-item a:hover {
    color: #00bbff;
}

.search-result-item h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: #00bbff;
}

.search-result-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.search-result-item strong {
    background-color: #fff9c4;
    padding: 0 2px;
    font-weight: 600;
}

.search-loading {
    padding: 15px;
    text-align: center;
    color: #666;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #999;
}

.search-error {
    padding: 15px;
    text-align: center;
    color: #d32f2f;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 220px 0 140px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
    border-bottom: 1px solid #eaeef5;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 187, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 187, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.8rem;
    color: #444444;
    max-width: 650px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Section Styling */
section {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #777777;
    margin-top: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.about-content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(0, 187, 255, 0.03);
    border-radius: 15px;
    z-index: -1;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-image img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Vision Section */
.vision-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e6f0ff;
    border-bottom: 1px solid #e6f0ff;
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.vision-item {
    background: white;
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e6f0ff;
}

.vision-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00bbff;
    z-index: 1;
}

.vision-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-item i {
    font-size: 3rem;
    color: #00bbff;
    margin-bottom: 25px;
    display: block;
    position: relative;
    z-index: 2;
}

.vision-item h3 {
    margin-bottom: 18px;
    color: #00bbff;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.vision-item p {
    color: #666666;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.7;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    padding: 50px 35px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #e6f0ff;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00bbff;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3.5rem;
    color: #00bbff;
    margin-bottom: 25px;
    display: block;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    margin-bottom: 20px;
    color: #00bbff;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666666;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.team-member {
    background: white;
    padding: 40px 30px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e6f0ff;
}

.team-member::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #00bbff;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 4px solid #f8f9fa;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member:hover img {
    transform: scale(1.08);
    border-color: #00bbff;
}

.team-member h3 {
    margin-bottom: 8px;
    color: #00bbff;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.team-member p {
    color: #666666;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    margin: 15px auto;
    width: fit-content;
    align-items: center;
    flex-wrap: nowrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: transparent;
    color: #00bbff;
    transition: all 0.3s ease;
    border: 2px solid #00bbff;
    position: relative;
    z-index: 2;
    text-decoration: none;
    flex-shrink: 0;
    overflow: hidden;
}

.social-links a:hover {
    background-color: #00bbff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 187, 255, 0.2);
}

/* Footer Styles */
footer {
    background-color: #00bbff;
    color: white;
    padding: 120px 0 30px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 187, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 187, 255, 0.05) 0%, transparent 20%);
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-section:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section:first-child .logo-container {
    margin-bottom: 25px;
    justify-content: center;
}

.footer-section .logo {
    height: 40px;
}

.footer-section .logo-text {
    font-size: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.footer-section .logo-sone {
    color: #00bbff;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00bbff;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: #b0b0b0;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    font-size: 0.95rem;
    position: relative;
}

.footer-section a:hover {
    color: white;
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: #b0b0b0;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 160px 0 100px;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    color: #1a1a2e;
    margin-bottom: 1.8rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-info p {
    color: #666666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.contact-form .form-intro {
    color: #666666;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Card Container */
.contact-form .form-card {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    box-shadow: none;
}

.contact-form .form-card h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.contact-form .form-card .form-intro {
    text-align: left;
    margin-bottom: 30px;
}

.contact-form .form-card .cta-button {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Form Group Labels - Left Aligned */
.form-group label {
    text-align: left;
}

.contact-details .detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.contact-details i {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-right: 22px;
    min-width: 24px;
    margin-top: 5px;
}

.contact-details h3 {
    margin-bottom: 8px;
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: #666666;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
}

/* Input Wrapper with Icons */
.form-group .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group .input-wrapper i {
    position: absolute;
    left: 18px;
    color: #888;
    font-size: 1rem;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    padding-left: 48px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
    /* Security: Highlight active input */
    z-index: 1;
    position: relative;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

/* Custom Select Styles for Subject Box */
.form-group .select-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.form-group .select-wrapper i {
    position: absolute;
    left: 18px;
    color: #888;
    font-size: 1rem;
    z-index: 1;
}

.subject-box {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    appearance: none;
    padding-right: 50px;
}

.subject-box:focus {
    outline: none;
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}

.form-group .select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    color: #888;
    pointer-events: none;
}

.subject-box:hover {
    border-color: #1a1a2e;
}

/* Textarea Wrapper */
.form-group .textarea-wrapper {
    position: relative;
}

.form-group .textarea-wrapper i {
    position: absolute;
    left: 18px;
    top: 20px;
    color: #888;
    font-size: 1rem;
    z-index: 1;
}

.subject-box option {
    padding: 10px;
    background: white;
    color: #333;
}

.subject-box-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #00bbff;
    font-size: 1rem;
}

/* Thank You Message Design */
.thank-you-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    text-align: center;
    background-color: white;
    border: 2px solid #00bbff;
    color: #00bbff;
    box-shadow: 0 5px 15px rgba(0, 187, 255, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 500;
    animation: slideInRight 0.3s ease;
    transition: transform 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Thank You Message Design - Floating Toast Notification */
.thank-you-message {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 999999;
    min-width: 340px;
    max-width: 420px;
    text-align: left;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border: 2px solid #00bbff;
    border-left: 6px solid #00bbff;
    color: #333333;
    box-shadow: 
        0 15px 35px rgba(0, 187, 255, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    padding: 22px 28px;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.6;
    animation: slideInRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    pointer-events: auto;
}

.thank-you-message::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thank-you-message p {
    margin: 0;
    padding: 0;
    color: #2d3748;
    font-weight: 500;
}

.thank-you-message:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(0, 187, 255, 0.25),
        0 8px 15px rgba(0, 0, 0, 0.15);
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.95);
    }
}

/* About Page Specific Styles */
.about-section {
    padding: 160px 0 100px;
    background: #ffffff;
}

.about-section .section-header {
    margin-bottom: 80px;
}

.our-vision,
.what-we-build,
.our-foundation,
.slogan-section {
    margin: 40px 0;
    padding: 35px 0;
    border-bottom: 1px solid #e6f0ff;
    position: relative;
}

.our-vision:last-child,
.what-we-build:last-child,
.our-foundation:last-child,
.slogan-section:last-child {
    border-bottom: none;
}

.slogan-section h3 {
    color: #00bbff;
    margin-bottom: 20px;
    font-size: 1.6rem;
    position: relative;
}

.slogan-section h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 45px;
    height: 3px;
    background: #00bbff;
}

.slogan-section p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00bbff;
    margin-bottom: 25px;
    font-style: italic;
}

.why-it-works h4 {
    color: #00bbff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.why-it-works h4::before {
    content: "▶";
    color: #00bbff;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    font-size: 0.9em;
}

.why-it-works ul {
    padding-left: 30px;
}

.why-it-works li {
    margin-bottom: 12px;
    color: #666666;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.why-it-works li::before {
    content: "•";
    color: #00bbff;
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    font-size: 1.2em;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Investors Page Specific Styles */
.investor-overview {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fafd 0%, #e6f0ff 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-text h1 {
    font-size: 3.2rem;
    color: #001a33;
    margin-bottom: 15px;
    line-height: 1.2;
}

.overview-text h2 {
    font-size: 2.2rem;
    color: #00bbff;
    margin-bottom: 25px;
    font-weight: 600;
}

.overview-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.highlight {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight i {
    font-size: 2.5rem;
    color: #00bbff;
    margin-bottom: 15px;
}

.highlight h3 {
    font-size: 2rem;
    color: #001a33;
    margin: 10px 0 5px;
}

.highlight p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.funding-history {
    padding: 100px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e6f0ff;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00bbff;
    top: 20px;
    left: 50%;
    margin-left: -10px;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-content h3 {
    color: #001a33;
    margin-bottom: 10px;
}

.timeline-content .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00bbff;
    margin: 10px 0;
}

.timeline-content .date {
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.timeline-content .description {
    color: #555;
    line-height: 1.7;
}

.leadership-section {
    padding: 100px 0;
    background: #f8fafd;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: #001a33;
    margin-bottom: 8px;
}

.team-member .position {
    color: #00bbff;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member .bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.investor-profiles {
    padding: 100px 0;
    background: white;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.profile-card {
    background: #f8fafd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e6f0ff;
}

.profile-card h4 {
    color: #001a33;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.profile-card .role {
    color: #00bbff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.profile-card .description {
    color: #555;
    line-height: 1.7;
}

.market-opportunity {
    padding: 100px 0;
    background: linear-gradient(135deg, #00bbff 0%, #00bbff 100%);
    color: white;
}

.market-opportunity .section-header h2,
.market-opportunity .section-header p {
    color: white;
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.opportunity-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat h3 {
    font-size: 2.2rem;
    margin: 0 0 10px;
    color: white;
}

.stat p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

.opportunity-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.investor-resources {
    padding: 100px 0;
    background: #f8fafd;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.resource-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
}

.resource-card i {
    font-size: 2.5rem;
    color: #00bbff;
    margin-bottom: 20px;
}

.resource-card h3 {
    color: #001a33;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-link, .btn-download, .btn-view {
    display: inline-block;
    padding: 12px 30px;
    background: #00bbff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #00bbff;
    cursor: pointer;
}

.pdf-buttons-compact {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pdf-buttons-compact {
        flex-direction: column;
        gap: 10px;
    }
    
    .pdf-buttons-compact .btn-download {
        width: 100%;
    }
}

.pdf-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pdf-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .pdf-buttons .btn-view,
    .pdf-buttons .btn-download {
        width: 100%;
    }
}

.download-link:hover, .btn-download:hover {
    background: #0099cc;
    border-color: #0099cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 187, 255, 0.3);
}

/* Button mobile responsive */
@media (max-width: 768px) {
    .download-link, .btn-download {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .resource-card {
        padding: 30px 20px;
    }
    
    .resource-card h3 {
        font-size: 1.2rem;
    }
    
    .resource-card p {
        font-size: 0.9rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00bbff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 187, 255, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: #0099cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 187, 255, 0.6);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1100px) {
    .hero-content {
        gap: 50px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opportunity-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.5s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 35px 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 187, 255, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
        left: 0;
    }
    
    .header-actions {
        position: relative;
    }
    
    .search-box {
        display: none;
    }
    
    .search-icon {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-section {
        padding: 180px 0 100px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
    }
    
    section {
        padding: 100px 0;
    }
}

@media screen and (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .vision-content,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .hero-content {
        gap: 35px;
    }
    
    .about-content {
        gap: 45px;
    }
    
    .hero-section {
        padding: 160px 0 80px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .company-highlights {
        grid-template-columns: 1fr;
    }
    
    .opportunity-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}



/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Enhanced hover effects for all interactive elements */
* {
    cursor: default;
}

a, button, .cta-button, .team-member, .service-card, .vision-item, .social-links a, .milestone-content {
    cursor: pointer;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.checkbox-container input {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    opacity: 0;
    cursor: pointer;
}

.checkbox-container .checkmark {
    position: absolute;
    left: 0;
    top: 3px;
    height: 18px;
    width: 18px;
    background-color: #f0f0f0;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.checkbox-container:hover .checkmark {
    background-color: #e6f0ff;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #00bbff;
    border-color: #00bbff;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.benefits-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.benefits-section h3 {
    text-align: center;
    color: #00bbff;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
}

.benefit-item i {
    font-size: 1.8rem;
    color: #00bbff;
    min-width: 35px;
    margin-top: 3px;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.platform-overview {
    padding: 80px 0;
    background: white;
}

.platform-features {
    margin-top: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ddd;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
    background: #00bbff;
    border-radius: 50%;
    padding: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.overview-features {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.6rem;
    color: #00bbff;
    min-width: 30px;
    margin-top: 3px;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3rem;
    color: #00bbff;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #ddd;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00bbff;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: #00bbff;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.waitlist-faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ddd;
}

.faq-question {
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: #00bbff;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-answer.open {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 20px 0 0 0;
    font-size: 1rem;
}

/*==========================================*/
/* ENHANCED INVESTOR PAGE STYLES */
/*==========================================*/

.investor-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    color: #001a33;
    position: relative;
    overflow: hidden;
}

.investor-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 187, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(0, 187, 255, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.investor-hero h1 {
    color: #00bbff;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.investor-hero h2 {
    color: #00bbff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.investor-hero p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
}

.investor-hero .hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.investment-highlights {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.investment-highlights::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f8ff 100%);
    z-index: 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0ff;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00bbff 0%, #00bbff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 187, 255, 0.15);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card i {
    font-size: 3rem;
    color: #00bbff;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.highlight-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #00bbff;
}

.highlight-card h3 {
    color: #00bbff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.highlight-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.financial-performance {
    padding: 120px 0;
    background: #f8fbff;
    position: relative;
}

.financial-performance::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 187, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 187, 255, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.performance-data {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.data-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.data-point {
    background: white;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e6f0ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.data-point::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 187, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.data-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 187, 255, 0.15);
}

.data-point:hover::before {
    opacity: 1;
}

.data-point h4 {
    color: #00bbff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.value {
    color: #00bbff;
    font-size: 3rem;
    font-weight: 800;
    margin: 15px 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 187, 255, 0.2);
}

.description {
    color: #666;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.ceo-message {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.ceo-message::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 187, 255, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.ceo-message::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 187, 255, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.ceo-content {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ceo-quote {
    flex: 1;
}

.ceo-quote p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 35px;
    padding: 35px;
    background: white;
    border-radius: 20px;
    border-left: 6px solid #00bbff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ceo-quote p::before {
    content: "\201C";
    position: absolute;
    top: -25px;
    left: 25px;
    font-size: 5rem;
    color: #00bbff;
    font-family: Georgia, serif;
    opacity: 0.2;
}

.ceo-signature h3 {
    color: #00bbff;
    margin-bottom: 12px;
    font-size: 1.7rem;
}

.ceo-signature p {
    color: #00bbff;
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.ceo-image {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #00bbff;
    flex-shrink: 0;
    box-shadow: 0 25px 50px rgba(0, 187, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.ceo-image::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bbff 0%, #00bbff 100%);
    z-index: -1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.3; }
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.ceo-image:hover {
    transform: scale(1.05) rotate(5deg);
}

.launch-strategy {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.launch-strategy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f8ff 100%);
    z-index: 0;
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.strategy-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strategy-point {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategy-point::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, #00bbff 0%, #00bbff 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.strategy-point:hover {
    transform: translateX(15px);
    box-shadow: 0 20px 40px rgba(0, 187, 255, 0.15);
}

.strategy-point:hover::before {
    transform: scaleY(1);
}

.strategy-point i {
    font-size: 2.2rem;
    color: #00bbff;
    min-width: 45px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.strategy-point:hover i {
    transform: scale(1.2) rotate(15deg);
    color: #00bbff;
}

.strategy-point h3 {
    color: #00bbff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.strategy-point p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.market-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #e6f0ff;
}

.market-map::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 187, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.market-map:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 45px 80px rgba(0, 0, 0, 0.25);
}

.market-map:hover::before {
    opacity: 1;
}

.market-map img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.market-map:hover img {
    transform: scale(1.05);
}

/*==========================================*/
/* ENHANCED SUBSCRIBE SECTION */
/*==========================================*/

.blog-subscribe {
    padding: 100px 0;
    background: white;
    color: #333;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.blog-subscribe::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 187, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 187, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.subscribe-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.subscribe-content h3 {
    color: #00bbff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: none;
}

.subscribe-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.subscribe-email {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: white;
    color: #333;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.subscribe-email::placeholder {
    color: #999;
}

.subscribe-email:focus {
    outline: none;
    border-color: #00bbff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 187, 255, 0.1);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(135deg, #00bbff 0%, #00bbff 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 64, 128, 0.3);
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #00bbff 0%, #00bbff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 64, 128, 0.4);
}

.privacy-note {
    color: #888;
    font-size: 0.95rem;
    margin-top: 15px;
}

/*==========================================*/
/* ENHANCED FOOTER DESIGN */
/*==========================================*/

footer {
    background-color: #000000;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 187, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(0, 187, 255, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section:first-child .logo-container {
    margin-bottom: 20px;
    justify-content: center;
}

.footer-section .logo {
    height: 35px;
}

.footer-section .logo-text {
    font-size: 1.4rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.footer-section .logo-sone {
    color: #00bbff;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #00bbff;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #b0b0b0;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
    position: relative;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #888;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background-color: #00bbff;
    color: white;
    transform: translateY(-3px) scale(1.1);
    border-color: #00bbff;
    box-shadow: 0 5px 15px rgba(0, 187, 255, 1);
}

/*==========================================*/
/* RESPONSIVE DESIGN FOR ALL NEW SECTIONS */
/*==========================================*/

@media (max-width: 1200px) {
    .ceo-content {
        gap: 50px;
    }
    
    .strategy-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .waitlist-hero .hero-content,
    .investor-hero .hero-content,
    .overview-content,
    .ceo-content,
    .strategy-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .ceo-content {
        flex-direction: column-reverse;
    }
    
    .launch-countdown,
    .stats-preview {
        justify-content: center;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .data-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-container {
        padding: 40px 30px;
    }
    
    .waitlist-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .waitlist-hero,
    .investor-hero,
    .investment-highlights,
    .financial-performance,
    .ceo-message,
    .launch-strategy,
    .platform-overview,
    .testimonials-section,
    .waitlist-faq {
        padding: 80px 0;
    }
    
    .waitlist-hero h1,
    .investor-hero h1,
    .form-header h2 {
        font-size: 2.2rem;
    }
    
    /* Investor Relations Tablet Header Adjustments */
    .investor-hero h1 {
        font-size: 2rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .investor-hero h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .investor-hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .investor-hero {
        padding: 120px 0 80px;
    }
    
    /* CEO Quote Tablet Adjustments */
    .ceo-quote p {
        font-size: 1rem;
        padding: 30px;
        line-height: 1.7;
    }
    
    .highlights-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .data-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .form-container {
        padding: 35px 25px;
    }
    
    .highlight-card,
    .benefit-item,
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .value {
        font-size: 2.5rem;
    }
    
    .ceo-image {
        width: 200px;
        height: 200px;
    }
    
    .subscribe-content h3 {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .subscribe-email {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .investor-hero,
    .investment-highlights,
    .financial-performance,
    .ceo-message,
    .launch-strategy,
    .platform-overview,
    .testimonials-section,
    .waitlist-faq {
        padding: 60px 0;
    }
    
    .investor-hero h1,
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .investor-hero p {
        font-size: 1.1rem;
    }
    
    /* Investor Relations Mobile Header Specific Adjustments */
    .investor-hero h1 {
        font-size: 1.6rem;
        margin-top: 10px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .investor-hero h2 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .investor-hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .investor-hero {
        padding: 100px 0 60px;
    }
    
    /* CEO Quote Mobile Adjustments */
    .ceo-quote p {
        font-size: 0.95rem;
        padding: 25px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .launch-countdown,
    .stats-preview {
        gap: 15px;
    }
    
    .countdown-item,
    .stat-item {
        padding: 20px 15px;
        min-width: 90px;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .data-row {
        grid-template-columns: 1fr;
    }
    
    .data-point {
        padding: 25px 20px;
    }
    
    .value {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .highlight-card,
    .benefit-item,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .ceo-image {
        width: 160px;
        height: 160px;
    }
    
    .strategy-point {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .subscribe-content h3 {
        font-size: 1.7rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        order: -1;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #00bbff;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00bbff;
}

/* FAQ Section Styles */
.faq-section {
    padding: 160px 0 100px;
    background: #ffffff;
    position: relative;
}

.faq-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.faq-categories {
    flex: 0 0 220px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6f0ff;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.faq-categories h3 {
    color: #00bbff;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 187, 255, 0.1);
}

.faq-categories h3::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00bbff;
}

.faq-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-categories li {
    margin-bottom: 12px;
}

.faq-categories a {
    display: block;
    padding: 12px 15px;
    color: #666666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding-left: 35px;
}

.faq-categories a::before {
    content: "\2022";
    position: absolute;
    left: 15px;
    color: #00bbff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.faq-categories a:hover,
.faq-categories a.active {
    background: rgba(0, 187, 255, 0.08);
    color: #00bbff;
    transform: translateX(5px);
}

.faq-categories a:hover::before,
.faq-categories a.active::before {
    opacity: 1;
    transform: scale(1);
}

.faq-questions {
    flex: 1;
    position: relative;
}

.faq-group {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #e6f0ff;
    overflow: hidden;
}

.faq-group h3 {
    background: linear-gradient(135deg, #00bbff 0%, #00bbff 100%);
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 1.4rem;
    position: relative;
}

.faq-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.faq-item {
    border-bottom: 1px solid #e6f0ff;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.active {
    background: rgba(0, 187, 255, 0.02);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-question:hover::before {
    background: #00bbff;
}

.faq-question:hover {
    background: rgba(0, 187, 255, 0.05);
}

.faq-question h4 {
    margin: 0;
    color: #001a33;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
}

.faq-question i {
    color: #00bbff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question i.fa-chevron-down {
    transform: rotate(0deg);
}

.faq-question i.fa-chevron-down.active {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
}

.faq-answer.open {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    margin: 20px 0 0 0;
    color: #666666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Responsive Design for FAQ */
@media screen and (max-width: 992px) {
    .faq-content {
        flex-direction: column;
    }
    
    .faq-categories {
        flex: none;
        position: static;
        margin-bottom: 30px;
    }
    
    .faq-group h3 {
        font-size: 1.3rem;
        padding: 18px 25px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer.open {
        padding: 0 25px 20px;
    }
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 120px 0 80px;
    }
    
    .faq-categories {
        padding: 25px 20px;
    }
    
    .faq-group h3 {
        font-size: 1.2rem;
        padding: 16px 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .faq-categories {
        padding: 20px 15px;
    }
    
    .faq-categories a {
        padding: 10px 12px;
        font-size: 0.95rem;
        padding-left: 30px;
    }
    
    .faq-group h3 {
        font-size: 1.1rem;
        padding: 15px 18px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-answer.open {
        padding: 0 18px 16px;
    }
}


/* Thank You Message Design */
.thank-you-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    text-align: center;
    background-color: white;
    border: 2px solid #00bbff;
    color: #00bbff;
    box-shadow: 0 5px 15px rgba(0, 187, 255, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 500;
    animation: slideInRight 0.3s ease;
    transition: transform 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==========================================*/
/* ENHANCED FOOTER DESIGN */
/*==========================================*/

footer {
    background-color: #000000;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 187, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(0, 187, 255, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section:first-child .logo-container {
    margin-bottom: 20px;
    justify-content: center;
}

.footer-section .logo {
    height: 35px;
}

.footer-section .logo-text {
    font-size: 1.4rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.footer-section .logo-sone {
    color: #00bbff;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #00bbff;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #b0b0b0;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
    position: relative;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: #888;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background-color: #00bbff;
    color: white;
    transform: translateY(-3px) scale(1.1);
    border-color: #00bbff;
    box-shadow: 0 5px 15px rgba(0, 187, 255, 1);
}

/* Subject Box Design */
.subject-box {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    margin-bottom: 25px;
}

.subject-box:focus {
    outline: none;
    border-color: #00bbff;
    box-shadow: 0 5px 15px rgba(0, 187, 255, 1);
}

.subject-box-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #00bbff;
    font-size: 1rem;
}

/* Company Identity Section - Clean Design */
.company-identity {
    padding: 100px 0;
    background: #ffffff;
}

.identity-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slogan-section {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.slogan-section h3 {
    color: #333333;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.slogan-section p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444444;
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 5px;
}

.why-it-works h4 {
    color: #333333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.why-it-works ul {
    padding-left: 20px;
}

.why-it-works li {
    margin-bottom: 15px;
    padding: 12px 15px;
    background: #f8f8f8;
    border-radius: 5px;
}

.why-it-works li strong {
    color: #333333;
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.why-it-works li p {
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.company-stats {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.company-stats h3 {
    color: #333333;
    margin-bottom: 30px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.stat-item h4 {
    color: #333333;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.stat-item p:first-of-type {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444444;
    margin-bottom: 8px;
}

.stat-item .stat-description {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.identity-values {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.identity-values h3 {
    color: #333333;
    margin-bottom: 30px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.value-item {
    padding: 25px;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.value-item h4 {
    color: #333333;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.value-item p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: #fff;
}

.leadership-section .leader-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

.leadership-section .leader-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #1a1a2e;
}

.leadership-section .leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-section .leader-details {
    text-align: left;
}

.leadership-section .leader-details h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-weight: 700;
}

.leadership-section .leader-details .leader-role {
    font-size: 1rem;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-section .leader-details .leader-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.leadership-section .leader-vision,
.leadership-section .leader-mission {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.leadership-section .leader-vision h4,
.leadership-section .leader-mission h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 600;
}

.leadership-section .leader-vision p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.leadership-section .mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.leadership-section .mission-item {
    text-align: center;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.leadership-section .mission-item:hover {
    transform: translateY(-5px);
}

.leadership-section .mission-item i {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    display: block;
}

.leadership-section .mission-item span {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

@media (max-width: 768px) {
    .leadership-section .leader-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .leadership-section .leader-details {
        text-align: center;
    }
    
    .leadership-section .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Redesigned Company Identity Section */
.company-identity .identity-content .brand-statement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    margin-bottom: 50px;
}

.company-identity .identity-content .brand-statement .brand-logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
}

.company-identity .identity-content .brand-statement .brand-text {
    text-align: left;
    max-width: 600px;
}

.company-identity .identity-content .brand-statement .brand-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.company-identity .identity-content .brand-statement .brand-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0;
    background: transparent;
    padding: 0;
    font-style: normal;
}

/* Info Cards */
.company-identity .identity-content .info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.company-identity .identity-content .info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.company-identity .identity-content .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.company-identity .identity-content .info-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.company-identity .identity-content .info-card .card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.company-identity .identity-content .info-card h4 {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.company-identity .identity-content .info-card .card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.company-identity .identity-content .info-card .card-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* Values Section */
.company-identity .identity-content .values-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    border: none;
}

.company-identity .identity-content .values-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 40px;
    font-weight: 700;
}

.company-identity .identity-content .values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.company-identity .identity-content .value-row {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.company-identity .identity-content .value-row:hover {
    transform: translateX(5px);
}

.company-identity .identity-content .value-row .value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-identity .identity-content .value-row .value-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.company-identity .identity-content .value-row .value-content h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 600;
}

.company-identity .identity-content .value-row .value-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    background: transparent;
    padding: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .company-identity .identity-content .brand-statement {
        flex-direction: column;
        text-align: center;
    }
    
    .company-identity .identity-content .brand-statement .brand-text {
        text-align: center;
    }
    
    .company-identity .identity-content .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-identity .identity-content .values-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .company-identity .identity-content .info-cards {
        grid-template-columns: 1fr;
    }
    
    .company-identity .identity-content .brand-statement {
        padding: 30px 20px;
    }
    
    .company-identity .identity-content .values-section {
        padding: 30px 20px;
    }
}

/* Company Overview Section */
.company-overview {
    padding: 100px 0;
    background: #ffffff;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.company-text h3 {
    color: #333333;
    margin: 25px 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.company-text p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.principles-list {
    padding-left: 20px;
    margin: 20px 0;
}

.principles-list li {
    margin-bottom: 12px;
    color: #555555;
    line-height: 1.6;
}

.company-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Platform Section */
.platform-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.platform-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.platform-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.platform-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background: #00bbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-text h3 {
    color: #333333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-text p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.platform-stats .stat-item {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.platform-stats h3 {
    color: #00bbff;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.platform-stats p {
    color: #666666;
    margin: 0;
}

/* Enhanced Team Section */
.team-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.team-intro p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.team-member.featured {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #00bbff;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    color: #333333;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.title {
    color: #00bbff !important;
    font-weight: 600;
    margin-bottom: 15px !important;
}

.bio {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-member .social-links {
    display: flex;
    gap: 15px;
}

.team-member .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00bbff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-member .social-links a:hover {
    background: #00bbff;
    transform: translateY(-3px);
}

.team-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
    border-radius: 15px;
    border: 2px solid #00bbff;
    box-shadow: 0 10px 30px rgba(0, 187, 255, 0.15);
}

.team-cta h3 {
    color: #00bbff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.team-cta p {
    color: #555555;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .company-content,
    .platform-content,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .company-overview,
    .platform-section,
    .team-section {
        padding: 80px 0;
    }
    
    .team-member.featured {
        flex-direction: column;
        text-align: center;
    }
    
    .member-image img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .platform-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .team-cta {
        padding: 30px 20px;
    }
}

/* Responsive Design for Identity Section */
@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .company-identity {
        padding: 100px 0;
    }
    
    .slogan-section,
    .company-stats,
    .identity-values {
        padding: 30px 20px;
    }
    
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .slogan-section p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .why-it-works li {
        padding: 12px 15px;
    }
    
    .stat-item,
    .value-item {
        padding: 20px 15px;
    }
}

/* Waitlist Thank You Message Design */
.waitlist-thank-you-message {
    position: static;
    margin: 20px auto;
    max-width: 500px;
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    animation: fadeInSlideDown 0.5s ease;
}

.waitlist-thank-you-message .message-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.waitlist-thank-you-message .fa-check-circle {
    font-size: 2rem;
    color: #28a745;
}

.waitlist-thank-you-message h4 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    color: #155724;
}

.waitlist-thank-you-message p {
    margin: 0;
    font-size: 1rem;
    color: #155724;
}

/*==========================================*/
/* Press Kit Page Styles */
/*==========================================*/

/* Professional Press Kit Design with #00bbff color */
:root {
    --primary-color: #00bbff;
    --primary-dark: #00bbff;
    --light-bg: #f8fbff;
    --card-shadow: 0 10px 30px rgba(0, 187, 255, 0.1);
    --hover-shadow: 0 15px 40px rgba(0, 187, 255, 0.2);
}

.press-hero {
    background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
    color: #333;
    padding: 120px 0 80px;
    text-align: center;
}

.press-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.press-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 187, 255, 0.1);
}

.stat-item h3 {
    font-size: 3rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item p {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        align-items: center;
    }
}

.media-assets {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
}

.assets-category {
    margin-bottom: 80px;
}

.assets-category h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-description {
    color: #666;
    font-size: 1.1rem;
    margin: 0 0 40px 0;
    font-weight: 500;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.asset-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 187, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.asset-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.asset-preview {
    height: 250px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.asset-preview::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 187, 255, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.asset-preview:hover::after {
    opacity: 1;
}

.asset-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.asset-preview:hover img {
    transform: scale(1.05);
}

.asset-info {
    padding: 30px;
}

.asset-info h4 {
    font-size: 1.4rem;
    color: #333;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.asset-info p {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.asset-details {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.format, .size {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 187, 255, 0.2);
}

.download-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 187, 255, 0.3);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-caption {
    color: white;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.close-modal {
    color: white;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    right: 30px;
    top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.contact-section {
    background: var(--light-bg);
    padding: 100px 0;
    text-align: center;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 187, 255, 0.1);
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-card h3 {
    color: #333;
    margin: 0 0 20px 0;
    font-size: 2rem;
}

.contact-card p {
    color: #666;
    margin: 0 0 30px 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-email {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0, 187, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 187, 255, 0.4);
}

@media (max-width: 768px) {
    .press-hero {
        padding: 120px 0 60px !important;
    }

    .press-hero h1 {
        font-size: 2rem !important;
    }

    .press-hero p {
        font-size: 1rem !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats .stat-item {
        padding: 15px;
    }

    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }

    .hero-stats .stat-item p {
        font-size: 0.85rem;
    }

    .media-assets {
        padding: 50px 0 !important;
    }

    .media-assets .section-header h2 {
        font-size: 1.7rem;
    }

    .media-assets .section-header p {
        font-size: 0.95rem;
    }

    .assets-category {
        margin-bottom: 40px;
    }

    .assets-category h3 {
        font-size: 1.3rem;
    }

    .assets-category .category-description {
        font-size: 0.9rem;
    }

    .assets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .asset-card {
        padding: 15px;
    }

    .asset-info {
        padding: 15px;
    }

    .asset-info h4 {
        font-size: 1rem;
    }

    .asset-info p {
        font-size: 0.85rem;
    }

    .asset-details {
        flex-wrap: wrap;
        gap: 8px;
    }

    .asset-details span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .download-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }

    .modal-image {
        max-width: 100%;
        height: auto;
    }

    .modal-caption {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 140px 20px 50px !important;
    }
    
    .contact-section .section-header {
        margin-bottom: 30px;
    }
    
    .contact-section .section-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-section .section-header p {
        font-size: 0.95rem;
    }
    
    .contact-form .form-card {
        padding: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .contact-card {
        padding: 30px 20px !important;
    }

    .contact-card h3 {
        font-size: 1.5rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .contact-email {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .press-hero {
        padding: 100px 0 40px !important;
    }

    .press-hero h1 {
        font-size: 1.6rem !important;
    }

    .press-hero p {
        font-size: 0.9rem !important;
    }

    .hero-stats .stat-item h3 {
        font-size: 1.3rem;
    }

    .media-assets .section-header h2 {
        font-size: 1.4rem;
    }

    .assets-category h3 {
        font-size: 1.1rem;
    }

    .asset-card {
        padding: 12px;
    }

    .asset-info {
        padding: 12px;
    }

    .asset-info h4 {
        font-size: 0.95rem;
    }

    .contact-card {
        padding: 25px 15px !important;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }
}

