/* :root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 10px;
    --transition: all 0.3s ease;
} */
 :root {
    --primary-color: #c0392b; /* Rich, bold red */
    --secondary-color: #7f8c8d; /* Muted grey for balance */
    --success-color: #27ae60; /* Fresh green */
    --info-color: #2980b9; /* Calming blue for info messages */
    --warning-color: #f39c12; /* Bright amber */
    --danger-color: #e74c3c; /* Strong red for errors */
    --light-color: #f8f9fa; /* Very light grey */
    --dark-color: #2c3e50; /* Deep navy-like tone */
    --white: #ffffff;
    --black: #000000;

    /* Gradients with red tones */
    --gradient-primary: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --gradient-secondary: linear-gradient(135deg, #f85032 0%, #e73827 100%);

    /* Shadows and styling */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.18);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}


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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Professional Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.saumya-icon{
    color: var(--primary-color);
}

.header-phone .phone-icon{
    color: var(--primary-color);
}

.pipe-separator {
    display: inline-block;
    color: #ccc;
    font-size: 16px;
    margin: 0 10px;
    align-self: center;
}

/* Optional: hide on small screens */
@media (max-width: 767px) {
    .pipe-separator {
        display: none;
    }
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.lead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1rem 0;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
}

.header-phone {
    color: var(--dark-color);
    font-size: 0.9rem;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} */

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Contact Highlight in Nav */
.nav-item .contact-highlight-nav {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    border-radius: 25px !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
}

.nav-item .contact-highlight-nav:hover {
    color: var(--white) !important;
    background: #e74c3c !important;
    box-shadow: var(--shadow-medium);
    text-decoration: none !important;
}

.nav-item .contact-highlight-nav:focus {
    color: var(--white) !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
  /* Center nav items */
  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  /* Optional: Adjust contact button */
  .navbar-nav .contact-highlight-nav {
    width: fit-content;
  }
}

.contact-highlight-nav::after {
    display: none !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 120px; /* Account for fixed navbar height */
    background: linear-gradient(rgba(192, 57, 43, 0.2), rgba(192, 57, 43, 0.2)),
                url('images/home.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.3) 0%, rgba(192, 57, 43, 0.3) 100%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 6s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 11s;
}

.particle:nth-child(6) {
    left: 90%;
    animation-delay: 5s;
    animation-duration: 6s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

/* Hero Title */
.hero-title {
    position: relative;
    overflow: hidden;
}

.text-gradient-hero {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Buttons */
.modern-btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modern-btn:hover .btn-shine {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    animation: float-card 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-card:nth-child(1) {
    top: 20px;
    right: 50px;
    width: 140px;
}

.floating-card:nth-child(2) {
    top: 150px;
    right: 20px;
    width: 130px;
}

.floating-card:nth-child(3) {
    top: 280px;
    right: 60px;
    width: 120px;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: rgb(245, 97, 80);
}

.floating-card h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Section */
.about-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-card-modern {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.stat-icon i {
    color: var(--white);
    font-size: 1rem;
}

/* About Image Grid */
.about-image-grid {
    position: relative;
    height: 400px;
}

.main-image {
    position: relative;
    z-index: 2;
}

.main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.main-image img:hover {
    transform: scale(1.02);
}

.overlay-images {
    position: absolute;
    top: 1;
    right: 0;
    z-index: 3;
}

.overlay-img-1 {
    position: absolute;
    top: 25px;
    right: 23rem;
    width: 170px;
    height: 170px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--white);
}

.overlay-img-2 {
    position: absolute;
    top: -30px;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--white);
}

.overlay-img-1 img,
.overlay-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.overlay-img-1:hover img,
.overlay-img-2:hover img {
    transform: scale(1.1);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-image {
    height: 140px;
    overflow: hidden;
}

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

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 1rem;
}

.feature-content h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

/* Service Cards - Minimized */
.service-card-mini {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    text-align: left;
    border-left: 4px solid transparent;
}

.service-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--primary-color);
}

.service-icon-mini {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-icon-mini i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card-mini:hover .service-icon-mini {
    transform: scale(1.1);
}

.service-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.service-content p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Process Section */
.process-step {
    position: relative;
    padding: 2rem 1rem;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: var(--transition);
}

.process-icon i {
    font-size: 2rem;
    color:  var(--white);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

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

/* Project Cards */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.project-image {
    position: relative;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.client-info h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Contact Section */
.contact-highlight {
    background: linear-gradient(135deg, rgb(172, 51, 38) 0%, #e9897b 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(192, 57, 43, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 57, 43, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(192, 57, 43, 0.2) 0%, transparent 50%);
    animation: pattern-move 20s ease-in-out infinite;
}

@keyframes pattern-move {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(-20px) translateY(-10px);
    }
    66% {
        transform: translateX(20px) translateY(10px);
    }
}

.contact-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control, 
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus, 
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.contact-form .form-select option {
    background: var(--dark-color);
    color: var(--white);
}

.contact-form .form-control, 
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus, 
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.contact-form .form-select option {
    background: var(--dark-color);
    color: var(--white);
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;

    display: flex;
    flex-direction: column; /* stack vertically */
    gap: 12px; /* space between buttons */
    align-items: flex-end; /* align buttons to right */
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.05);
}

.whatsapp-btn i{
    font-size: 1.5rem;
    margin: 0.5rem;
}

.whatsapp-btn span {
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: relative;  /* changed from fixed */
    bottom: auto;
    left: auto;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: var(--transition);
}

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

/* Modal Customization */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .service-card-mini {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-mini {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .about-image-grid {
        height: 300px;
        margin-top: 2rem;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .overlay-img-1,
    .overlay-img-2 {
        display: none;
    }
    
    .contact-highlight-nav {
        margin: 0.5rem 0 !important;
        display: block !important;
        text-align: center !important;
    }
    
    /* Fix hero badge visibility on mobile */
    .hero-badge {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    
    /* Fix hero section height and positioning on mobile */
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding-top: 80px;
        background-attachment: scroll;
    }
    
    /* Ensure buttons are fully visible */
    .hero-buttons {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem 0.5rem;
    }
    
    /* Additional mobile fixes for hero section */
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding-top: 90px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .hero-badge {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Button Hover Effects */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Custom Animations */
@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);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--shadow-medium);
}

.border-radius-custom {
    border-radius: var(--border-radius);
} 

/* Google map */
.google-map-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, white, #e0f2fe, #f0fdf4); /* Adjust gradient colors */
    padding-top: 0;
    padding-bottom: 0;
}

.map-container {
    width: 100%;
    position: relative;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.1), transparent); /* Tailwind's primary-500/10 */
    pointer-events: none;
    z-index: 10;
}

.map-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.map-iframe-wrapper iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer company link */
.decoration-none{
    text-decoration: none;
}

.company-link {
    color:rgba(255, 255, 255, 0.5)
}

.company-link:hover{
    color: #096bd3;
}

/* Gallery Section Styles */
.gallery-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: var(--white);
    text-align: left;
    width: 100%;
}

.gallery-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.gallery-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-content .btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

/* FAQ Section Styles */
.accordion {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-color);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-color);
    color: var(--dark-color);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

.accordion-button i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.accordion-button:not(.collapsed) i {
    opacity: 1;
}

/* Gallery Modal Styles */
#galleryModal .modal-dialog {
    max-width: 90vw;
}

#galleryModal .modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-heavy);
}

#galleryModal .modal-body {
    padding: 0;
}

#galleryModal img {
    max-height: 80vh;
    width: auto;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Responsive Design for Gallery and FAQ */
/* Medium desktop screens - fix logo/content overlap */
@media (max-width: 1200px) and (min-width: 992px) {
    .hero-section {
        padding-top: 130px; /* Extra padding for medium screens */
    }
    
    .hero-badge {
        margin-top: 1rem;
    }
}

/* Small desktop screens - additional fixes */
@media (max-width: 991px) and (min-width: 769px) {
    .hero-section {
        padding-top: 125px; /* Adjusted padding for small desktop */
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-badge {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin: 0.2rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    #galleryModal .modal-dialog {
        max-width: 95vw;
        margin: 1rem;
    }
    
    #galleryModal img {
        max-height: 70vh;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-filters {
        text-align: center;
    }
    
    .filter-btn {
        display: inline-block;
        width: auto;
        margin: 0.2rem 0.1rem;
        padding: 0.3rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .accordion-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .accordion-button i {
        margin-right: 0.5rem;
        font-size: 1rem;
    }
}