/* ===================================
   Singhal Associates - Professional Finance Website
   Modern & Premium Design with Smooth Animations
   =================================== */

/* ===================================
   Variables & Global Styles
   =================================== */
:root {
    --singhal-primary: #112232;
    --singhal-secondary: #2c5282;
    --singhal-accent: #d4af37;
    --singhal-accent-dark: #b8941f;
    --singhal-text-dark: #2d3748;
    --singhal-text-light: #718096;
    --singhal-bg-light: #f7fafc;
    --singhal-white: #ffffff;
    --singhal-shadow: rgba(0, 0, 0, 0.1);
    --singhal-shadow-lg: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--singhal-text-dark);
    overflow-x: hidden;
}

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

/* ===================================
   Navigation
   =================================== */
.singhal-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--singhal-white);
    box-shadow: 0 2px 10px var(--singhal-shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.singhal-nav.scrolled {
    box-shadow: 0 4px 20px var(--singhal-shadow-lg);
}

.singhal-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.singhal-logo h2 {
    font-size: 1.5rem;
    color: var(--singhal-primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-style: normal;
}

.singhal-logo img {
    height: 50px;
    object-fit: contain;
}

.singhal-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.singhal-nav-link {
    text-decoration: none;
    color: var(--singhal-text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.singhal-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--singhal-accent);
    transition: width 0.3s ease;
}

.singhal-nav-link:hover::after,
.singhal-nav-link.active::after {
    width: 100%;
}

.singhal-nav-link:hover,
.singhal-nav-link.active {
    color: var(--singhal-primary);
}

.singhal-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
    position: relative;
}

.singhal-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--singhal-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.singhal-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--singhal-white);
}

.singhal-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.singhal-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--singhal-white);
}

/* ===================================
   Hero Section
   =================================== */
.singhal-hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.9), rgba(44, 82, 130, 0.9)),
                url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?w=1920') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--singhal-white);
    overflow: hidden;
}

.singhal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?w=1920') center/cover fixed;
    z-index: -1;
}

.singhal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(26, 58, 95, 0.85), rgba(44, 82, 130, 0.85)); */
}

.singhal-hero-content {
    position: relative;
    z-index: 2;
}

.singhal-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.singhal-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.singhal-btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--singhal-accent);
    color: var(--singhal-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.singhal-btn-primary:hover {
    background: var(--singhal-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.singhal-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceScroll 2s infinite;
    color: var(--singhal-white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    z-index: 10;
}

.singhal-scroll-indicator:hover {
    color: var(--singhal-accent);
    transform: translateX(-50%) translateY(5px);
}

@keyframes bounceScroll {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   Section Headers
   =================================== */
.singhal-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.singhal-section-title {
    font-size: 2.5rem;
    color: var(--singhal-primary);
    margin-bottom: 0.6rem;
    position: relative;
    font-weight: 700;
}

.singhal-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--singhal-accent), var(--singhal-accent-dark));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    position: relative;
}

/* .singhal-title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--singhal-accent);
    border-radius: 50%;
    opacity: 0.2;
} */

.singhal-section-subtitle {
    font-size: 1.1rem;
    color: var(--singhal-text-light);
}

/* ===================================
   About Section
   =================================== */
.singhal-about {
    padding: 100px 0;
    background: var(--singhal-white);
}

.singhal-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.singhal-about-content {
    animation: fadeIn 1s ease;
}

.singhal-about-text {
    margin-bottom: 1.5rem;
    color: var(--singhal-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.singhal-about-mission {
    background: var(--singhal-bg-light);
    padding: 2rem;
    border-left: 4px solid var(--singhal-accent);
    margin-top: 2rem;
    border-radius: 5px;
}

.singhal-about-mission h3 {
    color: var(--singhal-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.singhal-about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--singhal-shadow-lg);
    animation: fadeIn 1s ease;
}

.singhal-about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.singhal-about-image:hover img {
    transform: scale(1.1);
}

/* ===================================
   Why Choose Us Section
   =================================== */
.singhal-why {
    padding: 100px 0;
    background: var(--singhal-bg-light);
}

.singhal-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.singhal-why-card {
    background: var(--singhal-white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--singhal-shadow);
}

.singhal-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--singhal-shadow-lg);
}

.singhal-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--singhal-accent), var(--singhal-accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--singhal-white);
    transition: all 0.3s ease;
}

.singhal-why-card:hover .singhal-why-icon {
    transform: rotateY(360deg);
}

.singhal-why-card h3 {
    color: var(--singhal-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.singhal-why-card p {
    color: var(--singhal-text-light);
    line-height: 1.6;
}

/* ===================================
   Services Section
   =================================== */
.singhal-services {
    padding: 100px 0;
    background: var(--singhal-white);
}

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

.singhal-service-card {
    background: var(--singhal-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.singhal-service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--singhal-accent);
}

.singhal-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.singhal-service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.singhal-service-icon {
    width: 60px;
    height: 60px;
    background: var(--singhal-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--singhal-accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.singhal-service-card:hover .singhal-service-icon {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.singhal-service-card h3 {
    color: var(--singhal-text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.singhal-service-card p {
    color: var(--singhal-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.singhal-service-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1.5rem;
}

.singhal-service-features li {
    color: var(--singhal-text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.singhal-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--singhal-accent);
    font-weight: bold;
}

.singhal-service-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--singhal-accent);
    color: var(--singhal-text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    width: fit-content;
}

.singhal-service-btn:hover {
    background: var(--singhal-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   Stats Counter Section
   =================================== */
.singhal-stats {
    padding: 80px 0;
    background: linear-gradient(rgba(17, 34, 50, 0.95), rgba(17, 34, 50, 0.95)), url('../images/bg.webp') center/cover no-repeat;
    color: var(--singhal-white);
    position: relative;
}

.singhal-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.singhal-stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(30, 45, 60, 0.7);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.singhal-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(30, 45, 60, 0.9);
}

.singhal-stat-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.singhal-stat-card:hover .singhal-stat-icon {
    color: #f5d442;
    transform: scale(1.1);
}

.singhal-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: #d4af37;
}

.singhal-stat-label {
    font-size: 1.1rem;
    color: var(--singhal-white);
    font-weight: 500;
}

/* ===================================
   CTA (Call to Action) Section
   =================================== */
.singhal-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--singhal-primary), var(--singhal-secondary));
    color: var(--singhal-white);
    text-align: center;
}

.singhal-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.singhal-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--singhal-white);
}

.singhal-cta-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
}

.singhal-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.singhal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.singhal-cta-primary {
    background: var(--singhal-accent);
    color: var(--singhal-text-dark);
}

.singhal-cta-primary:hover {
    background: var(--singhal-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.singhal-cta-secondary {
    background: transparent;
    color: var(--singhal-white);
    border: 2px solid var(--singhal-white);
}

.singhal-cta-secondary:hover {
    background: var(--singhal-white);
    color: var(--singhal-primary);
    transform: translateY(-3px);
}

.singhal-cta-btn i {
    font-size: 1.2rem;
}

/* ===================================
   Mission & Stats Section
   =================================== */
.singhal-mission-section {
    text-align: center;
    margin-bottom: 4rem;
}

.singhal-mission-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.singhal-section-label {
    font-size: 0.9rem;
    color: var(--singhal-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0 2rem;
}

.singhal-section-label::before,
.singhal-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--singhal-text-light);
}

.singhal-section-label::before {
    right: 100%;
}

.singhal-section-label::after {
    left: 100%;
}

.singhal-section-label::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--singhal-primary);
    border-radius: 50%;
}

.singhal-section-label::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--singhal-primary);
    border-radius: 50%;
}

.singhal-mission-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--singhal-text-dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

.highlight-green {
    color: #4ade80;
}

.highlight-text {
    font-weight: 700;
}

.singhal-stats-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.singhal-stat-circle {
    background: var(--singhal-white);
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.singhal-stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border-color: #4ade80;
}

.singhal-stat-circle:nth-child(2) {
    margin-left: -40px;
}

.singhal-stat-circle:nth-child(3) {
    margin-left: -40px;
}

.singhal-stat-circle:nth-child(4) {
    margin-left: -40px;
}

.singhal-stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--singhal-text-dark);
    margin-bottom: 0.5rem;
}

.singhal-stat-label-small {
    font-size: 0.9rem;
    color: var(--singhal-text-light);
    text-align: center;
}

/* ===================================
   Core Values Section
   =================================== */
.singhal-values {
    padding: 100px 0;
    background: var(--singhal-bg-light);
}

.singhal-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.singhal-value-item {
    background: var(--singhal-white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--singhal-shadow);
}

.singhal-value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--singhal-shadow-lg);
}

.singhal-value-item i {
    font-size: 3rem;
    color: var(--singhal-accent);
    margin-bottom: 1rem;
}

.singhal-value-item h3 {
    color: var(--singhal-primary);
    font-size: 1.3rem;
}

/* ===================================
   Partners Section
   =================================== */
.singhal-partners {
    padding: 80px 0;
    background: var(--singhal-white);
}

.singhal-partners-logos {
    background: var(--singhal-bg-light);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.singhal-partners-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--singhal-text-light);
}

/* ===================================
   Testimonials Section
   =================================== */
.singhal-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 58, 95, 0.05), rgba(44, 82, 130, 0.05));
}

.singhal-testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.singhal-testimonial-wrapper {
    position: relative;
    min-height: 300px;
}

.singhal-testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.singhal-testimonial-card.active {
    position: relative;
    opacity: 1;
}

.singhal-testimonial-content {
    background: var(--singhal-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--singhal-shadow-lg);
    position: relative;
}

.singhal-quote {
    font-size: 3rem;
    color: var(--singhal-accent);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.singhal-testimonial-content p {
    font-size: 1.2rem;
    color: var(--singhal-text-light);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.singhal-testimonial-author strong {
    color: var(--singhal-primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.singhal-testimonial-author span {
    color: var(--singhal-text-light);
    font-size: 0.9rem;
}

.singhal-testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.singhal-testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--singhal-primary);
    background: var(--singhal-white);
    color: var(--singhal-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.singhal-testimonial-btn:hover {
    background: var(--singhal-primary);
    color: var(--singhal-white);
    transform: scale(1.1);
}

/* ===================================
   Contact Section
   =================================== */
.singhal-contact {
    padding: 100px 0;
    background: var(--singhal-white);
}

.singhal-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.singhal-contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.singhal-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--singhal-primary), var(--singhal-secondary));
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--singhal-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.singhal-contact-details h3 {
    color: var(--singhal-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.singhal-contact-details p {
    color: var(--singhal-text-light);
    line-height: 1.6;
}

.singhal-contact-details a {
    color: var(--singhal-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.singhal-contact-details a:hover {
    color: var(--singhal-primary);
}

.singhal-contact-info-heading {
    position: relative;
    padding-bottom: 1rem;
}

.singhal-contact-info-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--singhal-accent);
    border-radius: 2px;
}

.singhal-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.singhal-form-group input,
.singhal-form-group select,
.singhal-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.singhal-form-group input:focus,
.singhal-form-group select:focus,
.singhal-form-group textarea:focus {
    outline: none;
    border-color: var(--singhal-primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 95, 0.1);
}

.singhal-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Footer (New Enhanced Style)
   =================================== */
.singhal-footer-new {
    background: var(--singhal-primary);
    color: var(--singhal-white);
    padding: 60px 0 0;
}

.singhal-footer-content-new {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.singhal-footer-section-new h3,
.singhal-footer-section-new h4 {
    margin-bottom: 1.5rem;
    color: var(--singhal-accent);
    font-size: 1.2rem;
    font-weight: 600;
}

.singhal-footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--singhal-white);
    margin-bottom: 0.5rem;
}

.singhal-tagline {
    color: var(--singhal-accent);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.singhal-company-info {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.singhal-social-links-new {
    display: flex;
    gap: 1rem;
}

.singhal-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--singhal-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.singhal-social-btn:hover {
    background: var(--singhal-accent);
    transform: translateY(-3px);
    border-color: var(--singhal-accent);
}

.singhal-social-btn.singhal-whatsapp:hover {
    background: #25D366;
}

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

.singhal-footer-links li {
    margin-bottom: 0.8rem;
}

.singhal-footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.singhal-footer-links li a i {
    font-size: 0.7rem;
    color: var(--singhal-accent);
}

.singhal-footer-links li a:hover {
    color: var(--singhal-accent);
    padding-left: 5px;
}

.singhal-contact-info {
    list-style: none;
    padding: 0;
    gap: 2rem;
}

.singhal-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: -1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.singhal-contact-info li i {
    color: var(--singhal-accent);
    margin-top: 3px;
    font-size: 1rem;
}

.singhal-contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.singhal-contact-info li a:hover {
    color: var(--singhal-accent);
}

.singhal-footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.singhal-footer-bottom-new p {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.singhal-footer-bottom-new a {
    color: var(--singhal-accent) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.singhal-footer-bottom-new a:hover {
    color: #ffd700 !important;
    text-decoration: underline;
}

/* Scroll to Top Button */
.singhal-scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.singhal-scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.singhal-scroll-top-btn i {
    text-decoration: none;
    color: white;
}

/* WhatsApp Float Button */
.singhal-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.singhal-whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.singhal-whatsapp-float i {
    text-decoration: none;
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Old Footer Styles (Keep for backward compatibility) */
.singhal-footer {
    background: var(--singhal-primary);
    color: var(--singhal-white);
    padding: 60px 0 20px;
}

.singhal-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.singhal-footer-section h3,
.singhal-footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--singhal-accent);
}

.singhal-footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.singhal-footer-section i {
    margin-right: 0.5rem;
    color: var(--singhal-accent);
}

.singhal-footer-section ul {
    list-style: none;
}

.singhal-footer-section ul li {
    margin-bottom: 0.8rem;
}

.singhal-footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.singhal-footer-section ul li a:hover {
    color: var(--singhal-accent);
}

.singhal-social-links {
    display: flex;
    gap: 1rem;
}

.singhal-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--singhal-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.singhal-social-links a:hover {
    background: var(--singhal-accent);
    transform: translateY(-3px);
}

.singhal-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

.fade-up {
    animation: fadeIn 1s ease;
}

.fade-up-delay {
    animation: fadeIn 1s ease 0.3s backwards;
}

.fade-up-delay-2 {
    animation: fadeIn 1s ease 0.6s backwards;
}

/* ===================================
   Page Header
   =================================== */
.singhal-page-header {
    position: relative;
    background: linear-gradient(135deg, var(--singhal-primary), rgba(51, 109, 179, 0.9)),
                url('images/bg.webp') center/cover no-repeat;
    padding: 100px 0 80px;
    text-align: center;
    color: var(--singhal-white);
    margin-top: 70px;
    overflow: hidden;
}

.singhal-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(17, 34, 50, 0.85), rgba(44, 82, 130, 0.85)); */
    z-index: 1;
}

.singhal-page-header .singhal-container {
    position: relative;
    z-index: 2;
}

.singhal-breadcrumb {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.singhal-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.singhal-breadcrumb a:hover {
    color: var(--singhal-accent);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 10px;
}

.breadcrumb-current {
    color: var(--singhal-accent);
    font-weight: 600;
}

.singhal-page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.singhal-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    body {
        font-size: 16px;
    }

    .singhal-section-title {
        font-size: 2.2rem;
    }

    .singhal-section-subtitle {
        font-size: 1rem;
    }

    .singhal-hamburger {
        display: flex;
    }

    .singhal-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--singhal-primary);
        width: 70%;
        height: 100vh;
        padding: 3rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        gap: 0;
        z-index: 1000;
        display: flex !important;
    }

    .singhal-menu.active {
        right: 0;
    }
    
    .singhal-menu::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .singhal-menu.active::after {
        opacity: 1;
        pointer-events: auto;
    }
    
    .singhal-nav-link {
        color: var(--singhal-white) !important;
        padding: 1rem 0;
        position: relative;
        display: block;
    }
    
    .singhal-nav-link::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--singhal-accent);
        transition: width 0.3s ease;
    }
    
    .singhal-nav-link:hover,
    .singhal-nav-link.active {
        color: var(--singhal-accent) !important;
    }
    
    .singhal-nav-link.active::after {
        width: 50px;
    }

    .singhal-hero-title {
        font-size: 2.5rem;
    }

    .singhal-hero-subtitle {
        font-size: 1.2rem;
    }

    .singhal-page-title {
        font-size: 2.5rem;
    }

    .singhal-page-subtitle {
        font-size: 1.1rem;
    }

    .singhal-about-wrapper {
        grid-template-columns: 1fr;
    }

    .singhal-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .singhal-footer-content-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .singhal-whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .singhal-scroll-top-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 80px;
        right: 20px;
    }

    .singhal-logo img {
        height: 40px !important;
    }

    .singhal-logo h2 {
        font-size: 1.2rem !important;
        font-family: 'Playfair Display', serif !important;
        letter-spacing: 1.5px !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .singhal-hero-title {
        font-size: 2rem;
    }

    .singhal-hero-subtitle {
        font-size: 1rem;
    }

    .singhal-section-title {
        font-size: 2rem;
    }

    .singhal-section-subtitle {
        font-size: 0.95rem;
    }

    .singhal-page-title {
        font-size: 2.2rem;
    }

    .singhal-page-subtitle {
        font-size: 1rem;
    }

    .singhal-about-mission h3,
    .singhal-contact-details h3,
    .singhal-why-card h3,
    .singhal-service-card h3,
    .singhal-value-item h3 {
        font-size: 1.1rem;
    }

    .singhal-about-text,
    .singhal-why-card p,
    .singhal-service-card p,
    .singhal-contact-details p {
        font-size: 0.95rem;
    }
    
    .singhal-contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .singhal-contact-info-heading {
        font-size: 1.75rem !important;
    }

    .singhal-hero {
        height: 80vh;
    }

    .singhal-stats-grid,
    .singhal-services-grid,
    .singhal-why-grid {
        grid-template-columns: 1fr;
    }

    .singhal-cta-title {
        font-size: 2.5rem;
    }

    .singhal-cta-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .singhal-cta-btn {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    .singhal-service-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .singhal-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .singhal-service-card h3 {
        font-size: 1.2rem;
    }

    .singhal-service-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .singhal-hero-title {
        font-size: 1.5rem;
    }

    .singhal-hero-subtitle {
        font-size: 0.9rem;
    }

    .singhal-section-title {
        font-size: 1.75rem;
    }

    .singhal-section-subtitle {
        font-size: 0.875rem;
    }

    .singhal-page-title {
        font-size: 1.75rem;
    }

    .singhal-page-subtitle {
        font-size: 0.875rem;
    }

    .singhal-breadcrumb {
        font-size: 0.85rem;
    }

    .singhal-breadcrumb a {
        font-size: 0.85rem;
    }

    .singhal-about-mission h3,
    .singhal-contact-details h3,
    .singhal-why-card h3,
    .singhal-service-card h3,
    .singhal-value-item h3 {
        font-size: 1rem;
    }

    .singhal-about-text,
    .singhal-why-card p,
    .singhal-service-card p,
    .singhal-contact-details p,
    .singhal-tagline,
    .singhal-company-info {
        font-size: 0.875rem;
    }
    
    .singhal-contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .singhal-contact-info-heading {
        font-size: 1.5rem !important;
    }

    .singhal-stat-icon {
        font-size: 2.5rem;
    }

    .singhal-stat-number {
        font-size: 2.2rem;
    }

    .singhal-stat-label {
        font-size: 0.95rem;
    }

    .singhal-logo h2 {
        font-size: 1.2rem;
        font-family: 'Playfair Display', serif;
        letter-spacing: 1.5px;
    }

    .singhal-btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .singhal-footer-section-new h4 {
        font-size: 1rem;
    }

    .singhal-footer-links li a,
    .singhal-contact-info li {
        font-size: 0.85rem;
    }

    .singhal-footer-bottom-new p {
        font-size: 0.8rem;
    }

    .singhal-service-card {
        padding: 1.5rem;
    }

    .singhal-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .singhal-service-card h3 {
        font-size: 1.1rem;
    }

    .singhal-service-card p {
        font-size: 0.875rem;
    }

    .singhal-service-features li {
        font-size: 0.85rem;
    }

    .singhal-service-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .singhal-cta {
        padding: 60px 0;
    }
    
    .singhal-cta-title {
        font-size: 1.75rem;
    }

    .singhal-cta-text {
        font-size: 0.95rem;
    }

    .singhal-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .singhal-cta-btn {
        width: 90%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .singhal-cta-btn i {
        font-size: 1rem;
    }

    .singhal-mission-text {
        font-size: 1.5rem;
    }

    .singhal-stats-cards {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .singhal-stat-circle {
        width: 160px;
        height: 160px;
        margin-left: 0 !important;
        margin-top: -50px;
    }

    .singhal-stat-circle:first-child {
        margin-top: 0;
    }

    .singhal-stat-circle:nth-child(2),
    .singhal-stat-circle:nth-child(3),
    .singhal-stat-circle:nth-child(4) {
        margin-left: 0 !important;
    }

    .singhal-stat-number-large {
        font-size: 2rem;
    }

    .singhal-stat-label-small {
        font-size: 0.8rem;
    }

    .singhal-mission-text {
        font-size: 1.5rem;
    }

    .singhal-stats-cards {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .singhal-stat-circle {
        width: 180px;
        height: 180px;
        margin-left: 0 !important;
        margin-top: -30px;
    }

    .singhal-stat-circle:first-child {
        margin-top: 0;
    }

    .singhal-stat-circle:nth-child(2),
    .singhal-stat-circle:nth-child(3),
    .singhal-stat-circle:nth-child(4) {
        margin-left: 0 !important;
    }

    .singhal-stat-number-large {
        font-size: 1.75rem;
    }
}

/* ===================================
   Contact Form Styles
   =================================== */

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.contact-heading {
    font-size: 2rem;
    color: var(--singhal-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-description {
    color: var(--singhal-text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: var(--singhal-primary);
    font-size: 0.95rem;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--singhal-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group-checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.form-group-checkbox .checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--singhal-accent);
}

.form-group-checkbox .checkbox-label span {
    font-size: 0.9rem;
    color: var(--singhal-text-dark);
}

.form-group.error .checkbox-label span {
    color: #e74c3c;
}

.form-group.error input[type="checkbox"] {
    border-color: #e74c3c;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--singhal-accent), #b8941f);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-block;
}

.btn-submit .btn-loading {
    display: none;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 0.75rem;
    animation: slideInDown 0.3s ease;
}

.form-message.show {
    display: flex;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.success-message i {
    font-size: 1.5rem;
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message-box i {
    font-size: 1.5rem;
    color: #dc3545;
}

.character-counter {
    font-size: 0.875rem;
    color: var(--singhal-text-light);
    text-align: right;
    margin-top: 0.25rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-heading {
        font-size: 1.75rem;
    }

    .contact-description {
        font-size: 0.95rem;
    }
    
    #homeContactForm {
        grid-template-columns: 1fr !important;
    }
    
    #homeContactForm .form-group {
        grid-column: auto !important;
    }
    
    #homeContactForm .form-group-checkbox {
        grid-column: auto !important;
    }
    
    #homeContactForm .btn-submit {
        grid-column: auto !important;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
