/* Main Stylesheet for Sharede Vision */
 
/* Import Sora font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');
 
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
:root {
    /* Brand Colors */
    --teal: #34cce1;
    --blue: #3177ec;
    --purple: #6e61ea;
    
    /* Additional Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --black: #000000;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--teal), var(--blue), var(--purple));
}
 
body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}
 
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
 
h1 {
    font-size: 3.5rem;
}
 
h2 {
    font-size: 2.5rem;
}
 
h3 {
    font-size: 2rem;
}
 
h4 {
    font-size: 1.5rem;
}
 
p {
    margin-bottom: 1rem;
}
 
a {
    color: var(--blue);
    text-decoration: none;
    transition: all 0.3s ease;
}
 
a:hover {
    color: var(--purple);
}
 
/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}
 
/* Utility Classes */
.text-center {
    text-align: center;
}
 
.text-left {
    text-align: left;
}
 
.bg-light {
    background-color: var(--light-gray);
}
 
.lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}
 
.mt-5 {
    margin-top: 3rem;
}
 
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}
 
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
}
 
/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Sora', sans-serif;
}
 
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(110, 97, 234, 0.3);
}
 
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(110, 97, 234, 0.4);
    color: var(--white);
}
 
.btn-secondary {
    background: var(--white);
    color: var(--purple);
    border: 2px solid var(--purple);
}
 
.btn-secondary:hover {
    background: var(--purple);
    color: var(--white);
}
 
/* Header & Navigation */
header {
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    justify-content: flex-start;
    padding: 1rem 0;
    height: 250px;
}
 
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* align to top instead of center */
    min-height: calc(100vh - 120px); /* full screen minus ~header space */
    padding: 2rem 1rem 6rem; /* reduced top padding, increased bottom */
    text-align: center;
}
 
 
/* Mobile Navigation - Consolidated */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: var(--dark-gray);
        width: 80%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 4rem 1rem;
        z-index: 999;
    }
 
    .nav-menu.active {
        left: 0;
    }
 
    .nav-menu .nav-link {
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 600;
    }
 
    .nav-menu .nav-link:hover {
        color: var(--blue);
    }
 
    .nav-item {
        margin: 1.5rem 0;
    }
 
    .mobile-toggle.active i::before {
        content: "\f00d"; /* font awesome times icon */
    }
}
 
.page-header-bg {
    background: var(--gradient-primary);
    padding-bottom: 20px;
    margin-bottom: 40px;
}
 
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
}
 
.hero-logo, .logo img {
  opacity: 1 !important;
  transform: none !important;
}
 
 
.hero-logo {
    width: 100%;
    max-width: 900px; /* increased from 700px */
    height: auto; /* let it scale naturally */
    margin-bottom: 2rem;
}
 
@media (max-width: 576px) {
    .hero-logo {
        max-width: 300px;
        margin-bottom: 1.5rem;
    }
}
 
/* Header adjustments for smaller screens */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem; /* add extra horizontal padding */
        justify-content: space-between;
        align-items: center;
    }
 
    .logo img {
        height: 100px; /* increased from 80px for better visibility */
    }
 
    .mobile-toggle {
        font-size: 1.8rem; /* ensure burger icon fits well */
        color: black;
    }
}
 
@media (max-width: 576px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
 
    .logo img {
        height: 80px; /* increased from 70px for better visibility */
    }
 
    .mobile-toggle {
        font-size: 1.6rem;
        color: black;
    }
}
 
@media (max-width: 768px) {
    .hero {
        padding: 1rem 1rem 4rem; /* further reduced for mobile */
    }
}
@media (max-width: 576px) {
    .hero {
        padding: 0.5rem 1rem 3rem; /* minimal top padding for small screens */
    }
}
 
 
.footer-logo-image {
    height: 70px;
}
 
.nav-menu {
    display: flex;
    list-style: none;
    margin-top: 50px;
    text-align: center;
    margin-left: -100px;
    margin-right: 150px;
}
 
.nav-item {
    margin-left: 2rem;
}
 
.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
}
 
.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}
 
.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}
 
.mobile-toggle {
    display: none;
    cursor: pointer;
    color: black;
}
 
/* Hero Section */
.hero {
    color: var(--white);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}
 
.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
 
.hero h1 {
    margin-bottom: 1.5rem;
}
 
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
 
/* Sections */
.section {
    padding: 5rem 0;
}
 
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}
 
@media (max-width: 576px) {
    .section {
        padding: 2.5rem 0;
    }
}
 
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
 
.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}
 
.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
 
/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
 
.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
 
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
 
.service-card-content {
    padding: 1.5rem;
}
 
.service-card h3 {
    color: var(--purple);
    margin-bottom: 1rem;
}
 
.service-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
 
/* Client Logo's */
.client-logo img {
    max-height: 150px;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.7;
    border-radius: 50%;
    transition: all 0.3s ease;
}
 
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
    padding: 0 1rem;
}
 
/* Features List */
.features-list {
    list-style: none;
}
 
/* Features Grid for About Page */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
 
.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
 
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
 
.feature-box h3 {
    color: var(--purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
 
/* Contact Page Styles */
.contact-title {
    text-align: center;
    margin-bottom: 2rem;
}
 
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
 
.contact-benefits {
    margin-bottom: 3rem;
}
 
.contact-benefits h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--purple);
}
 
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}
 
/* Service Content */
.service-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
 
/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    color: var(--white);
    text-align: center;
}
 
.page-header h1 {
    margin-bottom: 0;
}
 
.feature-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}
 
.feature-icon {
    color: var(--teal);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}
 
/* Testimonials */
.testimonials {
    background-color: var(--light-gray);
}
 
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}
 
.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}
 
.testimonial-author {
    font-weight: 600;
}
 
/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    width: 60%;
    margin: 0 auto 5rem auto;
    border-radius: 50px 0 50px 0;
}
 
.cta-section h2 {
    margin-bottom: 2rem;
}
 
/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
 
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
 
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}
 
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
 
.form-control:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(49, 119, 236, 0.1);
}
 
/* Footer */
footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}
 
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
 
.footer-logo img {
    height: 200px;
    margin-bottom: 0.5rem;
}
 
.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}
 
.footer-links ul {
    list-style: none;
}
 
.footer-links li {
    margin-bottom: 0.8rem;
}
 
.footer-links a {
    color: var(--white);
    opacity: 0.8;
}
 
.footer-links a:hover {
    opacity: 1;
    color: var(--white);
    text-decoration: underline;
}
 
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}
 
/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}
 
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        color: var(--dark-gray);
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 1rem 0 4rem; /* consistent with mobile hero padding */
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Features grid mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    /* Page header mobile */
    .page-header {
        padding: 3rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    /* Contact form mobile */
    .contact-form-container {
        padding: 0 1rem;
    }
    
    .contact-intro {
        padding: 0 1rem;
    }
    
    /* Form mobile improvements */
    .form-control {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}
 
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 0.5rem 0 3rem; /* consistent with small mobile hero padding */
    }
    
    /* Client logos mobile optimization */
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .client-logo img {
        max-height: 80px;
        max-width: 120px;
    }
    
    /* CTA section mobile */
    .cta-section {
        width: 95%;
        border-radius: 25px;
        padding: 3rem 1rem;
    }
    
    /* Features grid small mobile */
    .features-grid {
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.2rem;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
    }
    
    /* Page header small mobile */
    .page-header {
        padding: 2.5rem 0 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Contact benefits mobile */
    .contact-benefits {
        margin-bottom: 2rem;
    }
    
    .features-list {
        padding: 0;
    }
    
    .feature-item {
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
 
.form-message {
    margin-top: 10px;
    font-weight: bold;
    display: block;
}
.form-message.success {
    color: green;
}
.form-message.error {
    color: red;
}