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

/* CSS Variables */
:root {
    --software-gradient: linear-gradient(135deg, #00d4ff 0%, #ff6b6b 100%); /* Bright Cyan/Coral for Software */
    --hardware-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); /* Electric Blue/Aqua for Hardware */
    --realestate-gradient: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); /* Orange/Brown for Real Estate */
    --agriculture-gradient: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); /* Green for Agriculture */
    --home-gradient: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); /* Red for Home Services */
    --commercial-gradient: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%); /* Purple for Commercial */
    --ecommerce-gradient: linear-gradient(135deg, #f7971e 0%, #ffd200 100%); /* Gold/Yellow for Ecommerce */
    --legal-gradient: linear-gradient(135deg, #34495e 0%, #2c3e50 100%); /* Dark Blue/Gray for Legal */
    --manufacturing-gradient: linear-gradient(135deg, #e67e22 0%, #d35400 100%); /* Orange for Manufacturing */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    position: relative;
    min-height: 100vh;
}

/* Animated Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.star {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.star:nth-child(1) { width: 3px; height: 3px; background: #ff6b6b; animation-duration: 8s; }
.star:nth-child(2) { width: 2px; height: 2px; background: #4ecdc4; animation-duration: 12s; }
.star:nth-child(3) { width: 4px; height: 4px; background: #45b7d1; animation-duration: 10s; }
.star:nth-child(4) { width: 2px; height: 2px; background: #f7d794; animation-duration: 15s; }
.star:nth-child(5) { width: 3px; height: 3px; background: #c44569; animation-duration: 9s; }
.star:nth-child(6) { width: 2px; height: 2px; background: #00d2d3; animation-duration: 11s; }
.star:nth-child(7) { width: 4px; height: 4px; background: #ff9ff3; animation-duration: 13s; }
.star:nth-child(8) { width: 3px; height: 3px; background: #54a0ff; animation-duration: 7s; }
.star:nth-child(9) { width: 2px; height: 2px; background: #5f27cd; animation-duration: 14s; }
.star:nth-child(10) { width: 3px; height: 3px; background: #00d84a; animation-duration: 16s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 0.6; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 1; }
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 10;
    padding: 3rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo Section */
.logo-section {
    text-align: center;
    position: relative;
}

.main-title {    
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #4ecdc4, #45b7d1, #f7d794);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(255, 107, 107, 0.3);
    margin-bottom: 0.5rem;
    filter: brightness(1.2) contrast(1.1);
}

.subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Search Box Styles */
.search-container {
    position: relative;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.search-input-wrapper:focus-within {
    border-color: rgba(0,212,255,0.6);
    box-shadow: 0 12px 40px rgba(0,212,255,0.2), 0 0 30px rgba(0,212,255,0.1);
}

.search-icon {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within .search-icon {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0,212,255,0.5);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    padding: 0.5rem 0;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.clear-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.clear-btn:hover {
    color: #ff6b6b;
    background: rgba(255,107,107,0.2);
    transform: rotate(90deg);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    border: 2px solid rgba(0,212,255,0.3);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.search-result-item:hover {
    background: rgba(0,212,255,0.1);
    border-left: 4px solid #00d4ff;
    transform: translateX(5px);
}

.search-result-icon {
    color: #00d4ff;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,212,255,0.5);
}

.search-result-text {
    flex: 1;
}

.search-result-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.search-result-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.3;
}

.search-result-arrow {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-result-item:hover .search-result-arrow {
    color: #00d4ff;
    transform: translateX(5px);
}

.best-match-badge {
    background: linear-gradient(45deg, #00d4ff, #667eea);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
    animation: bestMatchGlow 2s ease-in-out infinite;
}

@keyframes bestMatchGlow {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.6);
    }
}

.results-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.5rem;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

/* Software Grid - Crystal Clear Boxes */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1400px;
    margin-top: 1rem;
    padding: 2rem;
}

/* Crystal Box Design */
.crystal-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    min-height: 280px;
    cursor: pointer;
}

.crystal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1), 
        rgba(255, 107, 107, 0.1), 
        rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.crystal-box:hover::before {
    opacity: 1;
}

.crystal-box:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 60px 0 rgba(0, 212, 255, 0.3),
        0 0 50px rgba(255, 107, 107, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
}

/* Box Shine Effect */
.box-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%,
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 2;
}

.crystal-box:hover .box-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Box Content */
.box-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Wrapper */
.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 107, 107, 0.2));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.crystal-box:hover .icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.icon-wrapper i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00d4ff, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

/* Box Title */
.box-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.crystal-box:hover .box-title {
    transform: scale(1.05);
    filter: brightness(1.3);
}

/* Box Subtitle */
.box-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Box Badge */
.box-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 107, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    z-index: 4;
    transition: all 0.3s ease;
}

.crystal-box:hover .box-badge {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.5);
}

/* Box Glow Effect */
.box-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 212, 255, 0.8) 25%,
        rgba(255, 107, 107, 0.8) 50%,
        rgba(78, 205, 196, 0.8) 75%,
        transparent
    );
    background-size: 200% 100%;
    animation: glowAnimation 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.crystal-box:hover .box-glow {
    opacity: 1;
}

@keyframes glowAnimation {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Old Services Grid (Keeping for backward compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

/* Section Headings with matching colors */
.services-grid h2 {
    grid-column: 1 / -1;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 3rem 0 2rem 0;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.services-grid h2:nth-of-type(1) { background: transparent; }
.services-grid h2:nth-of-type(2) { background: transparent; }
.services-grid h2:nth-of-type(3) { background: transparent; }
.services-grid h2:nth-of-type(4) { background: transparent; }
.services-grid h2:nth-of-type(5) { background: transparent; }
.services-grid h2:nth-of-type(6) { background: transparent; }
.services-grid h2:nth-of-type(7) { background: transparent; }
.services-grid h2:nth-of-type(8) { background: transparent; }
.services-grid h2:nth-of-type(9) { background: transparent; }

.services-grid h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s ease infinite;
}

.services-grid h2:first-of-type {
    margin-top: 0;
}

/* 3D Service Buttons */
.service-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-height: 160px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-btn:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(5deg) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.4),
        0 0 50px rgba(102, 126, 234, 0.3),
        inset 0 0 30px rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #ffffff;
}

/* Category-wise Service Button Colors and Icons */

/* Software Solutions - Blue/Purple Theme */
.service-btn[data-service="marketing"] { background: var(--software-gradient); }
.service-btn[data-service="development"] { background: var(--software-gradient); }

/* Hardware Solutions - Dark Blue/Green Theme */
.service-btn[data-service="computer"] { background: var(--hardware-gradient); }
.service-btn[data-service="mobile"] { background: var(--hardware-gradient); }
.service-btn[data-service="workshop"] { background: var(--manufacturing-gradient); }

/* Real Estate Services - Orange/Brown Theme */
.service-btn[data-service="realestate"] { background: var(--realestate-gradient); }
.service-btn[data-service="construction"] { background: var(--realestate-gradient); }

/* Agricultural Services - Green Theme */
.service-btn[data-service="seeds"] { background: var(--agriculture-gradient); }
.service-btn[data-service="farming"] { background: var(--agriculture-gradient); }
.service-btn[data-service="equipment"] { background: var(--agriculture-gradient); }

/* Home Services - Red Theme */
.service-btn[data-service="homeservices"] { background: var(--home-gradient); }

/* Commercial Services - Purple Theme */
.service-btn[data-service="commercialservices"] { background: var(--commercial-gradient); }

/* Ecommerce Services - Gold/Yellow Theme */
.service-btn[data-service="mensclothing"] { background: var(--ecommerce-gradient); }
.service-btn[data-service="ladiesclothing"] { background: var(--ecommerce-gradient); }
.service-btn[data-service="kidsclothing"] { background: var(--ecommerce-gradient); }
.service-btn[data-service="homeaccessories"] { background: var(--ecommerce-gradient); }
.service-btn[data-service="toolsequipment"] { background: var(--ecommerce-gradient); }

/* Legal Services - Dark Blue/Gray Theme */
.service-btn[data-service="government"] { background: var(--legal-gradient); }
.service-btn[data-service="consultancy"] { background: var(--legal-gradient); }

/* Service-Specific Icon Styling */
/* Marketing Service - Chart Line Icon */
.service-btn[data-service="marketing"] i:before { content: "\f201"; }

/* Development Service - Code Icon */
.service-btn[data-service="development"] i:before { content: "\f121"; }

/* Computer Service - Laptop Icon */
.service-btn[data-service="computer"] i:before { content: "\f109"; }

/* Mobile Service - Mobile Icon */
.service-btn[data-service="mobile"] i:before { content: "\f10b"; }

/* Workshop Service - Cogs Icon */
.service-btn[data-service="workshop"] i:before { content: "\f085"; }

/* Real Estate Service - Building Icon */
.service-btn[data-service="realestate"] i:before { content: "\f1ad"; }

/* Construction Service - Hard Hat Icon */
.service-btn[data-service="construction"] i:before { content: "\f807"; }

/* Seeds Service - Seedling Icon */
.service-btn[data-service="seeds"] i:before { content: "\f4d8"; }

/* Farming Service - Tractor Icon */
.service-btn[data-service="farming"] i:before { content: "\f722"; }

/* Equipment Service - Tractor Icon */
.service-btn[data-service="equipment"] i:before { content: "\f722"; }

/* Home Services - Home Icon */
.service-btn[data-service="homeservices"] i:before { content: "\f015"; }

/* Commercial Services - Briefcase Icon */
.service-btn[data-service="commercialservices"] i:before { content: "\f0b1"; }

/* Clothing Services - T-shirt, Female, Baby Icons */
.service-btn[data-service="mensclothing"] i:before { content: "\f553"; }
.service-btn[data-service="ladiesclothing"] i:before { content: "\f182"; }
.service-btn[data-service="kidsclothing"] i:before { content: "\f77c"; }

/* Home Accessories - Couch Icon */
.service-btn[data-service="homeaccessories"] i:before { content: "\f4b8"; }

/* Tools Equipment - Toolbox Icon */
.service-btn[data-service="toolsequipment"] i:before { content: "\f552"; }

/* Government Service - Landmark Icon */
.service-btn[data-service="government"] i:before { content: "\f19c"; }

/* Consultancy Service - Graduation Cap Icon */
.service-btn[data-service="consultancy"] i:before { content: "\f19d"; }

.service-btn i {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.service-btn:hover i {
    transform: scale(1.2) rotateY(20deg);
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
}

.service-btn span {
    text-align: center;
    line-height: 1.4;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    color: #ffffff;
}

/* Glow effect */
.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-btn:hover .btn-glow {
    opacity: 1;
    animation: glowPulse 2s ease infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Tagline Section */
.tagline-section {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-top: -2rem;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.tagline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.tagline {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.tagline-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-weight: 300;
}

/* Fixed Contact Buttons */
.fixed-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    animation: floatButtons 3s ease-in-out infinite;
}

.call-btn {
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation-delay: 0s;
}

.whatsapp-btn {
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation-delay: 1.5s;
}

.home-btn {
    bottom: 90px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    animation-delay: 0.75s;
}

.fixed-btn:hover {
    transform: scale(1.15) rotateZ(10deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,255,255,0.2);
    color: #ffffff;
}

.call-btn:hover {
    animation: bounceEffect 0.6s ease infinite;
}

.whatsapp-btn:hover {
    animation: bounceEffect 0.6s ease infinite;
}

.home-btn:hover {
    animation: bounceEffect 0.6s ease infinite;
}

@keyframes ringEffect {
    0%, 100% { transform: scale(1.15) rotateZ(0deg); }
    25% { transform: scale(1.2) rotateZ(5deg); }
    75% { transform: scale(1.1) rotateZ(-5deg); }
}

@keyframes bounceEffect {
    0%, 100% { transform: scale(1.15) translateY(0); }
    50% { transform: scale(1.25) translateY(-5px); }
}

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

/* Upcoming Pages Styles */
.upcoming-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.countdown-section {
    background: rgba(255,255,255,0.1);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.countdown-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    min-width: 120px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.countdown-label {
    font-size: 1rem;
    color: #fff;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section {
    background: rgba(255,255,255,0.1);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 1000px;
    width: 100%;
}

.contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #fff;
    min-width: 30px;
}

.contact-item span {
    color: #fff;
    font-size: 1rem;
}

.map-section {
    margin-top: 2rem;
}

.map-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.map-section iframe {
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Service Specific Background Colors */
.service-upcoming-container {
    min-height: 100vh;
}

.service-upcoming-container.software-theme {
    background: var(--software-gradient);
}

.service-upcoming-container.hardware-theme {
    background: var(--hardware-gradient);
}

.service-upcoming-container.realestate-theme {
    background: var(--realestate-gradient);
}

.service-upcoming-container.agriculture-theme {
    background: var(--agriculture-gradient);
}

.service-upcoming-container.home-theme {
    background: var(--home-gradient);
}

.service-upcoming-container.commercial-theme {
    background: var(--commercial-gradient);
}

.service-upcoming-container.ecommerce-theme {
    background: var(--ecommerce-gradient);
}

.service-upcoming-container.legal-theme {
    background: var(--legal-gradient);
}

.service-upcoming-container.manufacturing-theme {
    background: var(--manufacturing-gradient);
}

.service-hero {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
    animation: floatIcon 3s ease-in-out infinite;
}

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


/* Colorful gradient text animation */
.colorful-title {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f7d794, #667eea, #f093fb);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

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

.service-description {
    background: rgba(255,255,255,0.1);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 1000px;
    width: 100%;
}

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

.feature-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.feature-item i {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.feature-item h3 {
    color: #fff;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.feature-item p {
    color: rgba(255,255,255,0.9);
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* Hero Section Styles */
.hero-section {
    
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5), 0 0 60px rgba(118, 75, 162, 0.3);
    object-fit: cover;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(234, 234, 102, 0.8), 0 0 40px rgba(118, 75, 162, 0.5);
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-custom {
    padding: 12px 30px;
    margin: 0;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #667eea;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    color: #fff;
    text-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* About Section */
.about-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
    line-height: 1.8;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Education & Experience Cards */
.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
    border-color: rgba(102, 126, 234, 0.6);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.timeline-subtitle {
    color: #a0aec0;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Skills Section */
.skill-item {
    margin-bottom: 30px;
}

.skill-name {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.progress {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 1s ease;
}

/* Contact Section */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
    border-color: rgba(102, 126, 234, 0.6);
}

.contact-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.contact-detail {
    color: #a0aec0;
    word-break: break-word;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    color: #fff;
    padding: 15px;
    margin-bottom: 20px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-control::placeholder {
    color: #a0aec0;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Map Section */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    border-top: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.footer-text {
    padding: 10px;
    margin-bottom: 20px;
    color: #a0aec0;
}

/* Modal Styles - Redesigned */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
}

.modal-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    display: none;
}

.modal-content {
    padding: 40px 40px 0 40px;
    color: #2c3e50;
}

.modal-content .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.modal-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.modal-content .about-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #dce4ec;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modal-content .about-content p {
    margin-bottom: 15px;
    color: #34495e;
}

.modal-content .timeline-card {
    background: #ffffff;
    border: 1px solid #dce4ec;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modal-content .timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3498db, #2ecc71);
}

.modal-content .timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.modal-content .timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #033470;
}

.modal-content .timeline-subtitle {
    color: #6a1604;
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.modal-content .timeline-card p,
.modal-content .timeline-card ul {
    color: #34495e;
    line-height: 1.7;
}

.modal-content .timeline-card ul {
    padding-left: 20px;
}

.modal-content .timeline-card li {
    margin-bottom: 8px;
}

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

.skill-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-content .skill-item {
    margin-bottom: 0;
}

.modal-content .skill-name {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    color: #2c3e50;
    font-size: 0.95rem;
}

.modal-content .progress {
    height: 10px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
}

.modal-content .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.modal-footer-buttons {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #ffffff;
    border-top: 2px solid #e8eef5;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.modal-btn {
    flex: 1;
    max-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-btn i {
    font-size: 1rem;
}

.modal-btn-call {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.modal-btn-call:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.modal-btn-mail {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.modal-btn-mail:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.modal-btn-close {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.modal-btn-close:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .modal-footer-buttons {
        gap: 8px;
        padding: 12px 10px;
    }
    
    .modal-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
        max-width: none;
    }
    
    .modal-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    .modal-content .timeline-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
            color: #033470;
        }
    
        .modal-content .timeline-subtitle {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 2px;
            color: #6a1604;
        }                
        .modal-content .timeline-card p {
            font-size: 12px;
        }

        .modal-content .about-content p {
            font-size: 12px;
        }
        .modal-content .timeline-card li {
            font-size: 12px;
        }



    .modal-footer-buttons {
        gap: 6px;
        padding: 10px 8px;
    }
    
    .modal-btn {
        padding: 10px 8px;
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .modal-btn i {
        font-size: 0.85rem;
    }
}

.mt-3 {
    margin-top: 1rem;
}

/* Contact Modal Styles */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card-modal {
    background: #ffffff;
    border: 1px solid #dce4ec;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card-modal:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-icon-modal {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.contact-title-modal {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-detail-modal {
    line-height: 1.6;
    color: #033470;
    margin: 0;
    /* font-family: 'Orbitron', sans-serif; */
    font-weight: 600;    
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.contact-detail-modal a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-detail-modal a:hover {
    color: #2ecc71;
}

.social-icons-modal {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-icon-modal {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecf0f1;
    color: #2c3e50;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-modal:hover {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    transform: translateY(-3px);
}

.map-container-modal {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dce4ec;
    margin-top: 20px;
}

.map-container-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-modal {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #dce4ec;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group-modal {
    margin-bottom: 20px;
}

.form-group-modal label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group-modal input,
.form-group-modal textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dce4ec;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group-modal input:focus,
.form-group-modal textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.btn-submit-modal {
    width: 100%;
    padding: 12px 30px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-modal:hover {
    background: linear-gradient(135deg, #2980b9, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {       
        margin: 10px auto;
    }
    
    .modal-content {
        padding: 10px;
    }
    
    .modal-content .section-title {
        font-size: 1.5rem;
    }
    
    .modal-content .timeline-card {
        padding: 10px;
    }
    
    .skills-grid-modal {
        grid-template-columns: 1fr;
    }
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .software-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .crystal-box {
        min-height: 250px;
    }
}


/* Crystal Box Design */
@media (max-width: 480px) {
    .crystal-box {
        padding: 2rem 1.5rem;
        min-height: 220px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 2rem;
    }

    .box-title {
        font-size: 1.2rem;
    }
}

/* Responsive Design for Main Page */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .services-grid h2 {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
        margin: 2rem 0 1.5rem 0;
    }

    .service-btn {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }

    .service-btn i {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .tagline-section {
        padding: 2rem 1.5rem;
        margin-top: -2rem;
    }

    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .call-btn {
        bottom: 10px;
        left: 10px;
    }

    .whatsapp-btn {
        bottom: 10px;
        right: 10px;
    }

    .home-btn {
        bottom: 70px;
        left: 10px;
    }

    .search-input-wrapper {
        padding: 0.6rem 1rem;
    }

    .search-input {
        font-size: 1rem;
    }

    .search-results {
        max-height: 300px;
    }

    .search-result-item {
        padding: 0.8rem 1rem;
    }

    .search-result-icon {
        font-size: 1.2rem;
    }

    .search-result-title {
        font-size: 0.9rem;
    }

    .search-result-description {
        font-size: 0.8rem;
    }

    /* Hero Buttons Responsive for 768px */
    .hero-buttons {
        gap: 10px;
        padding: 0 10px;
        flex-wrap: nowrap;
    }

    .btn-custom {
        padding: 11px 20px;
        width: 180px;
        ;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .social-icons-modal {
        display: flex;
        justify-content: center;
        gap: 0px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .main-container {
        padding: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid h2 {
        font-size: 1.3rem;
        padding: 0.7rem 1rem;
        margin: 1.5rem 0 1rem 0;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .search-input-wrapper {
        padding: 0.5rem 0.8rem;
        border-radius: 20px;
    }

    .search-icon {
        font-size: 1rem;
        margin-right: 0.8rem;
    }

    .search-input {
        font-size: 0.9rem;
    }

    .search-results {
        max-height: 250px;
        margin-top: 0.3rem;
    }

    .search-result-item {
        padding: 0.6rem 0.8rem;
        gap: 0.8rem;
    }

    .search-result-icon {
        font-size: 1rem;
        min-width: 25px;
    }

    .search-result-title {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .search-result-description {
        font-size: 0.75rem;
    }

    .clear-btn {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

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

    .timeline-card {
        padding: 20px;
    }
 
    /* Countdown timer - 2 items per row on mobile */
    .about-content>div {
        gap: 15px !important;
    }

    .about-content .timeline-card {
        min-width: calc(50% - 10px) !important;
        flex: 0 0 calc(50% - 10px) !important;
        padding: 20px 15px !important;
    }

    .countdown-number {
        font-size: 2.5rem !important;
    }

    .countdown-label {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .about-content .timeline-card {
        min-width: calc(50% - 8px) !important;
        flex: 0 0 calc(50% - 8px) !important;
        padding: 15px 10px !important;
    }

    .countdown-number {
        font-size: 2rem !important;
    }
.modal-content .section-title {
    font-size: 1.2rem;
}
    .countdown-label {
        font-size: 0.8rem !important;
    }
}

/* Mobile responsiveness for upcoming pages */
@media (max-width: 768px) {
    .upcoming-container {
        padding: 1rem 0.5rem;
        margin: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .main-container {
        padding: 0.5rem;
        margin: 0;
    }

    .contact-section {
        padding: 2rem 1rem;
        margin: 1rem 0.5rem;
        width: calc(100% - 1rem);
        max-width: 100%;
    }

    .countdown-timer {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 0.5rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0.5rem;
        margin: 0.2rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.9rem;
    }

    .countdown-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .contact-title {
        font-size: 1.4rem;
    }

    .main-title {
        font-size: 2rem;
        padding: 0 1rem;
        text-align: center;
    }

     .main-title {
        font-size: 1rem;       
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .logo-section {
        padding: 1rem;
        text-align: center;
    }



    .service-icon {
        font-size: 3rem;
    }
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .contact-info {
        gap: 1rem;
        padding: 0;
    }

    .map-section {
        margin: 1rem 0;
        padding: 0;
    }

    .map-section iframe {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .upcoming-container {
        padding: 0.5rem 0.25rem;
    }

    .contact-section {
        padding: 1.5rem 0.8rem;
        margin: 0.5rem 0.25rem;
        width: calc(100% - 0.5rem);
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.6rem 0.3rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .main-title {
        /* margin-top: 20px; */
        font-size: 1.8rem;
    }

    .countdown-timer {
        gap: 0.3rem;
    }

      .hero-buttons {
        gap: 10px;
        padding: 0 10px;
        flex-wrap: nowrap;
    }

    .btn-custom {
        width: 150px;
        padding: 12px 18px;
        font-size: 0.8rem;
    }   
}

/* Mobile Responsive - 375px and below */
@media (max-width: 380px) {
    .hero-buttons {
        gap: 6px;
        padding: 0 8px;
        flex-wrap: nowrap;
    }

    .btn-custom {
        width: 120px;
        ;
        padding: 10px 12px;
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }

    .btn-custom i {
        font-size: 0.8rem;
        margin-right: 3px;
    }
}

/* Coming Soon Modal Specific Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: -10px;
    margin-bottom: -25px;
}

.countdown-card {
    min-width: 120px;
    flex: 0 0 auto;
    text-align: center;
    padding: 25px;
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: #207708;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
}

.countdown-label {
    font-weight: 800;
    font-size: 1rem;
    color: #d6511c;
    margin-top: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map Container Adjustments */
.map-container-modal iframe {
    height: 300px !important;
    width: 100%;
}

.contact-card-modal.tall {
    height: 300px !important;
}

.contact-detail-modal.left-align {
    text-align: left;
}

/* Services Grid Center */
.services-grid.center {
    text-align: center;
}

/* Section Spacing */
.section.map-section {
    margin-top: -120px;
    margin-bottom: -80px;
}

.section-title.spaced {
    margin-top: 2rem;
}

/* Heart Icon Color */
.heart-icon {
    color: #e74c3c;
}

/* About Content Center */
.about-content.center {
    text-align: center;
}

/* Progress Bar Width Classes */
.progress-bar.w-95 { width: 95%; }
.progress-bar.w-90 { width: 90%; }
.progress-bar.w-92 { width: 92%; }
.progress-bar.w-85 { width: 85%; }
.progress-bar.w-93 { width: 93%; }
.progress-bar.w-88 { width: 88%; }
.progress-bar.w-80 { width: 80%; }
.progress-bar.w-82 { width: 82%; }
.progress-bar.w-87 { width: 87%; }
