/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f97316;
}

.subscribe-btn {
    background: #023e8a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.15em;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(2,62,138,0.08);
    text-align: center;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.subscribe-btn:hover,
.subscribe-btn:focus {
    background: #f77f00;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(2,62,138,0.16);
    text-decoration: none;
    outline: none;
}

/* Optional: Add a subtle animated ripple effect on click */
.subscribe-btn:active::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    animation: btn-ripple 0.4s linear;
    pointer-events: none;
}

@keyframes btn-ripple {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1101;
    margin-left: 16px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #023e8a;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f97316;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
}

.enquire-now {
    position: fixed;
    right: -44px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #f97316;
    color: white;
    padding: 12px 25px;
    border-radius: 25px 25px 0 0;
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquire-now:hover {
    background: #ea580c;
    transform: translateY(-50%) rotate(-90deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Reach Out Button (moved to top, just after hero section) */
.reachout-top-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 0 0;
}

.reachout-btn {
    display: inline-block;
    background: #023e8a;
    color: #fff;
    font-weight: 600;
    font-size: 1.15em;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(2,62,138,0.08);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    letter-spacing: 0.5px;
}

.reachout-btn:hover, .reachout-btn:focus {
    background: #f77f00;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(2,62,138,0.16);
    text-decoration: none;
    outline: none;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-left h2 {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 40px;
    font-weight: 700;
}

.service-item {
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-item:hover,
.service-item.active {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #f97316;
}

.service-item h3 {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.1rem;
}

.services-right {
    position: relative;
}

.services-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: -50px;
    margin-left: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.service-details h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-details ul {
    list-style: none;
    margin-top: 20px;
}

.service-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-details .fas.fa-check {
    color: #10b981;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: #1e3a8a;
    color: white;
    transform: scale(1.05);
    border-color: #f97316;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.pricing-card.featured h3 {
    color: white;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.pricing-card.featured .price-note {
    color: #e2e8f0;
}

.trial {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 20px;
}

.included {
    font-weight: 600;
    margin-bottom: 20px;
}

.business-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.features .fas.fa-check {
    color: #10b981;
    font-size: 0.9rem;
}

.pricing-card.featured .features .fas.fa-check {
    color: #34d399;
}

.pricing-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.pricing-btn.primary {
    background: #f97316;
    color: white;
}

.pricing-btn.secondary {
    background: #f97316;
    color: white;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.apps-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.pricing-card.featured .apps-note {
    color: #e2e8f0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    color: #f97316;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}

.faq-item:first-child .faq-question i {
    transform: rotate(180deg);
}

/* Insights Section */
.insights {
    padding: 100px 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

.insights h2 {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 20px;
    font-weight: 700;
}

.insights-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #e2e8f0;
}

.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(249, 115, 22, 0.8);
}

/* Blogs Section */
.blogs {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.blogs h2 {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 50px;
    font-weight: 700;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.blog-card {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ea580c;
}

.blog-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f97316;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    max-width: 600px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Founder Section */
.founder {
    padding: 100px 0;
    background: #1e3a8a;
    color: white;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-content h2 {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 20px;
    font-weight: 700;
}

.founder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.founder-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.founder-image {
    position: relative;
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-links {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f97316;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 30px;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #f97316;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: #f97316;
    width: 20px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-link:hover {
    color: #f97316;
}

.video-link i {
    color: #ff0000;
    font-size: 1.2rem;
}

.enquiry-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    color: #333;
}

.enquiry-form h3 {
    color: #1e3a8a;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.enquiry-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    background: #f97316;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ea580c;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Blog Details Styles */
.blog-details {
    padding: 120px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.blog-details .container {
    max-width: 800px;
}

.back-link {
    display: inline-block;
    color: #f97316;
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ea580c;
}

.blog-details h1 {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 30px;
    line-height: 1.3;
}

.blog-details img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

@media (max-width: 768px) {
    .blog-details h1 {
        font-size: 2rem;
    }
    
    .blog-details img {
        height: 250px;
        margin: 20px 0;
    }
    
    .blog-details p {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .founder-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .enquire-now {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-left h2,
    .insights h2,
    .blogs h2,
    .about h2 {
        font-size: 2rem;
    }
}

/* --- Add or update these styles for responsive hamburger and navigation --- */

/* Hamburger always on top and styled */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1101;
    margin-left: 16px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #023e8a;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Responsive nav menu */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 4px 16px rgba(2,62,138,0.08);
        z-index: 1100;
        border-radius: 10px;
        padding: 20px 0;
    }
    .nav-menu.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .subscribe-btn {
        margin-left: 0;
        margin-top: 12px;
    }
    .nav-container {
        flex-wrap: wrap;
    }
}

/* Prevent horizontal scroll on mobile */
body, html {
    overflow-x: hidden;
}

/* Optional: Make sure the nav stays above content */
.header {
    z-index: 1200;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Add or update this at the end of your styles.css for better mobile layout of the services section */

@media (max-width: 900px) {
    .services-grid {
        flex-direction: column;
        gap: 0;
    }
    .services-left, .services-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .services-left {
        margin-bottom: 24px;
    }
    .service-item {
        font-size: 1em;
        padding: 14px 10px;
        margin-bottom: 10px;
    }
    .service-details {
        padding: 16px;
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .services-left h2 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .service-item h3 {
        font-size: 1em;
        gap: 6px;
    }
    .service-details {
        font-size: 0.98em;
        padding: 12px;
    }
}
