/* Base Styles */
:root {
    --primary-color: #1a3a6c;
    --secondary-color: #ff6b35;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --gray-color: #f0f0f0;
    --text-color: #444;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--secondary-color);
}

.learn-more {
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.learn-more:hover {
    color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* ===== NOGTIMES LOGO STYLING ===== */
/* Base Styles */
.logo {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1;
    display: inline-block;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo p {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.logo span {
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-left: 0.15em;
    position: relative;
    opacity: 0.9;
    font-size: 24px;
}

/* Modern Underline Effect */
.logo p::after {
    content: "";
    position: absolute;
    bottom: -0.15em;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.95);
    transform-origin: left center;
    opacity: 0.2;
}

/* Hover Effects */
.logo a:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.logo a:hover p::after {
    transform: scaleX(1);
    opacity: 0.4;
}

/* Dark Mode Variant */
.logo--dark {
    color: #1a1a1a;
}

/* Light Mode Variant */
.logo--light {
    color: #f8f8f8;
}

/* Accent Color Variant */
.logo--accent span {
    color: #2563eb; 
}

/* Minimal Version (for small spaces) */
.logo--minimal p::after {
    display: none;
}

/* Animation for Digital Use */
@media (prefers-reduced-motion: no-preference) {
    .logo--animated span {
        display: inline-block;
        animation: logo-pulse 3s ease infinite;
    }
    
    @keyframes logo-pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.85; transform: scale(1.02); }
    }
}

.header-right {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.phone {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.phone i {
    margin-right: 5px;
}

.consult-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.consult-btn:hover {
    background-color: var(--primary-color);
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--secondary-color);
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section Styles */
.hero-section {
    background-color: var(--light-color);
    padding: 60px 0;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
}

.hero-left h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.subheading {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 25px;
}

.search-bar {
    display: flex;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-family: inherit;
}

.search-bar button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background-color: var(--secondary-color);
}

.recommended-services {
    margin-bottom: 30px;
}

.service-card .icon {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 15px;
}

.recommended-services p {
    font-weight: 500;
    margin-bottom: 10px;
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-btn {
    background-color: white;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.service-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.client-count {
    margin-top: 30px;
}

.client-count p {
    font-weight: 500;
    margin-bottom: 15px;
}

.client-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.client-logos img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.client-logos img:hover {
    opacity: 1;
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
}

.contact-form-container h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    flex: 1;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
}

.captcha-placeholder {
    background-color: #f0f0f0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: #777;
}

.submit-btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.submit-btn:hover {
    background-color: var(--primary-color);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-weight: 500;
    box-shadow: var(--box-shadow);
    z-index: 100;
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 20px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* About Section Styles */
.about-section {
    padding: 60px 0;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon img {
    max-width: 100%;
    max-height: 100%;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Our Services Section Styles */
.our-services-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-box h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.service-box p {
    margin-bottom: 15px;
}

.service-box .learn-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-box .learn-more:hover i {
    transform: translateX(5px);
}

/* Working Process Section Styles */
.working-process-section {
    padding: 60px 0;
    background-color: #fff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: #ddd;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 30px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background-color: var(--secondary-color);
    color: white;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Why Choose Us Section Styles */
.why-choose-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 30px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary-color);
    color: white;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 60px 0;
}

.testimonialSwiper {
    padding: 20px 10px 60px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.testimonial-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

/* Blog Section Styles */
.blog-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-meta {
    margin: 15px 0;
    font-size: 14px;
    color: #777;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    margin-right: 5px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 500;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.footer-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.footer-btn:hover {
    background-color: white;
    color: var(--primary-color);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info{
    display: flex;
    flex-direction: column;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.copyright {
    margin-bottom: 15px;
    font-size: 14px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-step {
        flex: 0 0 45%;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
    
    .header-right {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .header-right.active {
        display: flex;
    }
    
    
    .contact-info {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .phone {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .consult-btn {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav ul li {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .footer-middle {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-left h1 {
        font-size: 28px;
    }
    
    .service-buttons {
        justify-content: center;
    }
    
    .client-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
    
    .footer-btn {
        text-align: center;
    }
}