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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

html {
    background: #1a1a2e;
    min-height: 100%;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    background-color: #1a1a2e;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 60px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo a {
    color: #fff;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav-links li {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #fff !important;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 40px;
    min-width: fit-content;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff !important;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-links a:hover::before {
    left: 100%;
}

/* Main Content */
main {
    min-height: 100vh;
    padding-top: 100px;
    background: transparent;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    text-align: center;
    padding: 2rem;
}

.glass-container {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    text-align: center;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    pointer-events: none;
}

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

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
    letter-spacing: -1px;
    line-height: 1.2;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.3px;
}

h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Global white font color override */
* {
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6, p, span, div, li, a {
    color: #ffffff !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    border: none;
    cursor: pointer;
}

.whatsapp-float::before {
    content: '📱';
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20c060;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover::before {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    color: #fff !important;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f093fb, #764ba2, #667eea);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

.glass-container ul li {
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.glass-container ul li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

footer p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: 0.8rem 1.5rem;
    }
    
    nav {
        height: 50px;
    }
    
    .nav-links {
        gap: 0.3rem;
    }
    
    .nav-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
        height: 35px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    main {
        padding-top: 90px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        height: auto;
        padding: 0.5rem 0;
    }
    
    .logo {
        order: 1;
        margin-bottom: 0.5rem;
    }
    
    .nav-links {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-links li {
        height: auto;
        flex: none;
    }
    
    .nav-links a {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        height: auto;
        min-width: auto;
        border-radius: 15px;
        white-space: nowrap;
    }
    
    main {
        padding-top: 140px;
    }
    
    .hero {
        padding: 1rem;
    }
    
    .glass-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    nav a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    header {
        padding: 1rem;
    }
    
    main {
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .glass-container {
        padding: 1.5rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    nav ul {
        gap: 0.2rem;
    }
    
    nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Carousel placeholder styling */
.carousel-placeholder {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Timeline placeholder styling */
.timeline-placeholder {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.loading {
    animation: shimmer 1.5s ease-in-out infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 8%, rgba(255, 255, 255, 0.2) 18%, rgba(255, 255, 255, 0.1) 33%);
    background-size: 800px 104px;
}


/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 2rem 0;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-slide {
    display: none;
    padding: 2rem;
    text-align: center;
    animation: slideIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

.project-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.project-info h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot.active,
.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

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

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    width: 50%;
    padding: 0 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    top: 0;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.timeline-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

/* Mobile Timeline Styles */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 3rem;
    }
    
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
    
    .carousel-controls {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: fit-content;
    }
}

/* Enhanced hover effects */
.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.8);
}

.carousel-slide:hover .project-image {
    transform: scale(1.02);
}

/* Smooth transitions for all interactive elements */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Hero Image Styles */
.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 500;
}

/* About Image Styles */
.about-image {
    width: 250px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Industries Grid Styles */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.industry-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-card p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Rainmaker Styles */
.rainmaker-icon {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rainmaker-intro {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    font-weight: 500;
}

.rainmaker-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.4;
}

.rainmaker-stats {
    margin-top: 3rem;
    text-align: center;
}

.rainmaker-stats h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.stat-box h4 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 200px;
    }
    
    .hero-image {
        width: 150px;
        height: 150px;
    }
    
    .about-image {
        width: 200px;
        height: 240px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rainmaker-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rainmaker-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 120px;
        height: 120px;
    }
    
    .about-image {
        width: 180px;
        height: 220px;
    }
    
    .stat-item {
        min-width: 150px;
        padding: 0.8rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .industry-image {
        height: 150px;
    }
    
    .rainmaker-icon {
        width: 100px;
        height: 100px;
    }
}

/* Associates Page Styles */
.associates-intro {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.associates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.associate-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.associate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.associate-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.associate-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.associate-logo h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.location {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.associate-details {
    text-align: left;
}

.associate-description {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.associate-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.specialty-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.associate-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.associate-link a:hover {
    color: #764ba2;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.associate-status {
    margin-top: 1rem;
}

.status-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partnership Benefits Section */
.partnership-benefits {
    margin: 4rem 0;
    text-align: center;
}

.partnership-benefits h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-item p {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Partnership Stats Section */
.partnership-stats {
    margin: 4rem 0;
    text-align: center;
}

.partnership-stats h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stats-row .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    transition: all 0.3s ease;
}

.stats-row .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.stats-row .stat-item h4 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stats-row .stat-item p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive for Associates */
@media (max-width: 768px) {
    .associates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .associate-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stats-row .stat-item {
        min-width: 200px;
    }
    
    .associate-specialties {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .associates-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .associate-card {
        padding: 1rem;
    }
    
    .associate-logo h3 {
        font-size: 1.3rem;
    }
    
    .partnership-benefits h3,
    .partnership-stats h3 {
        font-size: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .stats-row .stat-item {
        min-width: 180px;
        padding: 1rem 1.5rem;
    }
}

/* Enhanced About Me Styles */
.about-highlights {
    margin-top: 2rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-highlights h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.about-highlights > p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

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

.strength-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.strength-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.strength-item h4 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.strength-item p {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Services Page Styles */
.services-section {
    margin: 4rem 0;
    text-align: center;
}

.services-section h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h4 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.service-card > p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #d0d0d0;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

.services-cta {
    margin: 4rem 0 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-cta h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta > p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive for Services */
@media (max-width: 768px) {
    .services-section {
        margin: 3rem 0;
    }
    
    .services-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
    }
    
    .service-card > p {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
        padding-left: 1.3rem;
    }
    
    .services-cta {
        margin: 3rem 0 1rem;
        padding: 2rem;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
    
    .services-cta > p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card > p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding-left: 1.1rem;
    }
    
    .services-cta {
        padding: 1.5rem;
        margin: 2rem 0 0.5rem;
    }
    
    .services-cta h3 {
        font-size: 1.3rem;
    }
    
    .services-cta > p {
        font-size: 0.95rem;
    }
}

/* Mobile Responsive for Enhanced About */
@media (max-width: 768px) {
    .key-strengths {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .strength-item {
        padding: 1rem;
    }
    
    .about-highlights h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-highlights > p {
        font-size: 0.95rem;
    }
    
    .strength-item h4 {
        font-size: 1rem;
    }
    
    .strength-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.6rem 0.8rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        height: 32px;
    }
    
    main {
        padding-top: 160px;
    }
    
    .glass-container {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Payment Button Styles */
.payment-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.4),
        0 0 0 0 rgba(255, 107, 53, 0.7);
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    animation: paymentPulse 3s infinite;
    overflow: hidden;
}

.payment-float::before {
    content: '₹';
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.payment-float::after {
    content: 'PAY';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.payment-float:hover {
    background: linear-gradient(135deg, #ff5722, #ff9800, #ff5722);
    transform: scale(1.15);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        0 0 0 8px rgba(255, 107, 53, 0.3);
}

.payment-float:hover::before {
    font-size: 24px;
    transform: translateY(-8px);
}

.payment-float:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
}

@keyframes paymentPulse {
    0% {
        box-shadow: 
            0 8px 25px rgba(255, 107, 53, 0.4),
            0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(255, 107, 53, 0.6),
            0 0 0 12px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(255, 107, 53, 0.4),
            0 0 0 0 rgba(255, 107, 53, 0.7);
    }
}

/* Payment Menu Styles */
.payment-menu {
    position: fixed;
    bottom: 180px;
    right: 30px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 998;
    min-width: 250px;
    animation: slideInRight 0.3s ease;
    overflow: hidden;
}

.payment-menu-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-menu-header h3 {
    margin: 0;
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.payment-options {
    padding: 1rem;
}

.payment-option {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-option:last-child {
    margin-bottom: 0;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.3rem;
}

.payment-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

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

/* Payment Notification Styles */
.payment-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(30px);
    border-radius: 15px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 350px;
    animation: slideInTop 0.3s ease;
    overflow: hidden;
}

.payment-notification.success {
    border-left: 4px solid #28a745;
}

.payment-notification.error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.success-icon, .error-icon {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.2rem;
}

.success-icon {
    color: #28a745;
}

.error-icon {
    color: #dc3545;
}

.notification-content h4 {
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.notification-content p {
    margin: 0 0 0.5rem 0;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-content small {
    color: #b0b0b0;
    font-size: 0.8rem;
}

.close-notification {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
}

.close-notification:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive for Payment Elements */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 20px;
    }
    
    .whatsapp-float::before {
        font-size: 24px;
    }
    
    .payment-float {
        width: 55px;
        height: 55px;
        bottom: 90px;
        right: 20px;
    }
    
    .payment-float::before {
        font-size: 24px;
    }
    
    .payment-float::after {
        font-size: 9px;
        bottom: 6px;
    }
    
    .payment-menu {
        bottom: 155px;
        right: 20px;
        left: 20px;
        min-width: auto;
    }
    
    .payment-notification {
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 30px;
        right: 15px;
    }
    
    .whatsapp-float::before {
        font-size: 20px;
    }
    
    .payment-float {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 15px;
    }
    
    .payment-float::before {
        font-size: 22px;
    }
    
    .payment-float::after {
        font-size: 8px;
        bottom: 5px;
    }
    
    .payment-menu {
        bottom: 145px;
        right: 15px;
        left: 15px;
    }
    
    .payment-menu-header {
        padding: 0.8rem 1rem;
    }
    
    .payment-menu-header h3 {
        font-size: 1rem;
    }
    
    .payment-options {
        padding: 0.8rem;
    }
    
    .payment-option {
        padding: 0.8rem;
    }
    
    .payment-amount {
        font-size: 1.2rem;
    }
    
    .payment-label {
        font-size: 0.85rem;
    }
    
    .payment-notification {
        right: 15px;
        left: 15px;
        top: 80px;
    }
    
    .notification-content {
        padding: 1rem;
    }
}
