body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #003d7a;
    border-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Header Styles */
.header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .logo {
    height: 50px;
}

/* Hero Section */
.hero-section {
    height: auto;
    
    background-color: #f8f9fa;
    position: relative;
}
/* medium and large device */
@media (min-width: 768px) {
    .hero-section {
        max-height: 100vh;
        overflow: hidden;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-content {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0056b3;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #f8f9fa;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-box i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-box ul {
    text-align: left;
    margin-bottom: 0;
}

/* Visual Showcase */
.showcase-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.blueprint-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blueprint-image {
    width: 100%;
    transition: all 0.5s ease;
}

.blueprint-container:hover .blueprint-image {
    transform: scale(1.05);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Partner Section */
.partner-section {
    padding: 100px 0;
    background-color: #fff;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.partner-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-card .quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 600;
    display: flex;
    align-items: center;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 0px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0056b3;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
    text-decoration: none;
}


.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 767px) {
    /* Mobile Typography */
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem !important;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    /* Mobile Spacing */
    .overview-section,
    .showcase-section,
    .partner-section,
    .contact-section {
        padding: 60px 0 !important;
    }
    
    .section-title {
        margin-bottom: 40px !important;
    }
    
    /* Mobile Header */
    .header {
        padding: 10px 0 !important;
    }
    
    .header .logo {
        height: 40px !important;
    }
    
    /* Mobile Feature Boxes */
    .feature-box {
        padding: 20px !important;
        margin-bottom: 20px;
    }
    
    .feature-box h3 {
        font-size: 1.3rem;
    }
    
    .feature-box li {
        font-size: 0.9rem;
    }
    
    /* Mobile Testimonials */
    .testimonial-card {
        padding: 15px !important;
        margin: 5px;
    }
    
    .testimonial-card .quote {
        font-size: 0.95rem;
    }
    
    .testimonial-card .author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 0.9rem;
    }
    
    .testimonial-card .author img {
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Mobile Contact Form */
    .contact-form {
        padding: 20px !important;
    }
    
    .form-control {
        padding: 10px 15px !important;
    }
    
    .input-group-text {
        padding: 10px 15px;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 60px 0 30px !important;
    }
    
    .footer .col-md-4,
    .footer .col-md-3,
    .footer .col-md-5 {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-logo {
        width: 150px !important;
        margin: 0 auto 20px;
        display: block;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    /* Mobile Hero CTA */
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile Partner Logos */
    .partner-logos {
        gap: 20px;
    }
    
    .partner-logo {
        max-width: 120px;
    }
}

@media (max-width: 991px) {
    /* Tablet Header */
    .header nav a {
        font-size: 0.9rem;
        margin: 0 10px;
    }
    
    .header .col-4 {
        flex: 0 0 60%;
        max-width: 60%;
    }
    
    .header .col-6 {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

@media (min-width: 768px) {
    /* Desktop Enhancements */
    .hero-section {
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-content h1 {
        font-size: 3.5rem !important;
    }
    
    .section-title h2 {
        font-size: 2.5rem !important;
    }
    
    .testimonial-card {
        padding: 30px !important;
    }
    
    .testimonial-card .quote {
        font-size: 1.1rem;
    }
    
    .testimonial-card .author img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .contact-form {
        padding: 40px !important;
    }
    
    .footer {
        padding: 80px 0 30px !important;
    }
    
    .header {
        padding: 15px 0 !important;
    }
    
    .header .logo {
        height: 50px !important;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 575px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .feature-box {
        padding: 15px !important;
    }
    
    .testimonial-card {
        padding: 12px !important;
    }
    
    .contact-form {
        padding: 15px !important;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Fix for mobile menu button */
.btn.d-lg-none {
    border: none;
    background: transparent;
    padding: 5px;
}

.btn.d-lg-none:focus {
    box-shadow: none;
}

/* Responsive hero image */
.hero-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-section img {
        height: 100vh;
        object-fit: cover;
    }
}

/* Ensure proper spacing on all devices */
.row > [class*="col-"] {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .row > [class*="col-"] {
        margin-bottom: 0;
    }
}

/* Responsive grid adjustments */
@media (max-width: 767px) {
    .blueprint-container,
    .video-container {
        margin-bottom: 20px;
    }
    
    .testimonialSwiper {
        padding: 10px 5px;
    }
}

/* CSS Variables */
:root {
    --primary-color: #0080b6;
    --secondary-color: #004d6d;
    --accent-color: #00a8e8;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.feature-box {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box li {
    font-size: 1rem;
}

.hero-section {
    height: auto;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        height: 100vh;
    }
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
}

.testimonialSwiper {
    padding: 20px 10px;
    overflow: hidden;
}

.testimonialSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .testimonial-card .quote {
        font-size: 1.1rem;
    }
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .testimonial-card .author img {
        width: 60px;
        height: 60px;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px;
    }
}

.form-control {
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

@media (min-width: 768px) {
    .footer {
        padding: 80px 0 30px;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: all 0.3s ease; 
    text-decoration: none !important;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Header Responsive Fixes */
.header {
    padding: 10px 0;
}

@media (min-width: 768px) {
    .header {
        padding: 15px 0;
    }
}

.header .logo {
    height: 40px;
}

@media (min-width: 768px) {
    .header .logo {
        height: 50px;
    }
}

/* Mobile Menu */
@media (max-width: 991px) {
    .hideonmobile {
        display: none;
    }
    
    .header .col-4 {
        flex: 0 0 60%;
        max-width: 60%;
    }
    
    .header .col-6 {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

/* Mobile Menu Button Fix */
.mobile-menu-btn {
    display: block !important;
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    color: #000 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-btn:hover {
    color: var(--primary-color) !important;
    transform: scale(1.1) !important;
}

.mobile-menu-btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

.mobile-menu-btn i {
    display: block !important;
    font-size: 24px !important;
    line-height: 1 !important;
}

/* Ensure mobile menu button is visible on mobile */
@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none !important;
    }
}