/* service page css */
        :root {
            --primary: #f59e0b;
            --secondary: #6366f1;
            --background-dark: #0f172a;
            --text-light: #1f2937;
            --text-dark: #f3f4f6;
            --bg-light: #f5f5f5;
            --bg-dark: #1f2937;
            --border-light: #e5e7eb;
            --border-dark: #374151;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .glass-card.dark {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .hero-gradient {
            background: radial-gradient(circle at top right, #312e81, #0f172a);
        }
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
    
/* header background color */
        .fixed.top-0.w-full.z-50.border-b.border-slate-200\/10.bg-background-light\/80.dark\:bg-background-dark\/80.backdrop-blur-md {
    background: radial-gradient(circle at top right, #312e81, #0f172a);
    color: white;
}

/* for the whatsapp floating button */
.whatsapp-float{
position: fixed;
width:60px;
height:60px;
bottom:25px;
right:25px;
background-color:#25D366;
color:#FFF;
border-radius:50%;
text-align:center;
font-size:30px;
box-shadow:2px 2px 5px rgba(0,0,0,0.3);
z-index:100;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
}

.whatsapp-float:hover{
background-color:#1ebe5d;
}



/* about page hero section alignment and padding */
.align-center{
    width: 50%;
    margin: auto;
    
}

/* custom background for the about page milestones section */
.bg-brand-purple {
    background: linear-gradient(135deg, #1b0f3d 0%, #2e1a64 100%);
}


/* central town style  */
.hero-section{
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-img1{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay{
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.hero-overlay h1{
    color: white;
    font-size: 40px;
    letter-spacing: 3px;
    font-weight: 600;
}
.project-info{
    padding:60px 120px;
    background:#f5f5f5;
}

@media (prefers-color-scheme: dark) {
    .project-info {
        background:#1f2937;
        color: #f3f4f6;
    }
}

.dark .project-info {
    background:#1f2937;
    color: #f3f4f6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    margin-top: 40px;
}

.info-left{
    flex:2;
}

.logos {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    justify-content: center;
}

.logos img{
    height:150px;
}

.info-left p{
    color:#555;
    line-height:1.6;
    font-size:20px;
}

@media (prefers-color-scheme: dark) {
    .info-left p {
        color:#d1d5db;
    }
}

.dark .info-left p {
    color:#d1d5db;
}

.info-right{
    flex:1;
}

.info-right ul{
    list-style:none;
    padding:0;
}

.info-right li{
    padding:10px 0;
    border-bottom:2px solid red;
    font-size:20px;
}

@media (prefers-color-scheme: dark) {
    .info-right li {
        border-bottom:2px solid #ef4444;
        color: #f3f4f6;
    }
}

.dark .info-right li {
    border-bottom:2px solid #ef4444;
    color: #f3f4f6;
}
.gap{
    margin-top: 60px;
    display: flex;
    flex-direction: column; /* images one below another */
    gap: 40px; /* space between images */
}

.image-grid{
   
    padding:40px 0;
}

.grid-container{
    width:80%;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.grid-item{
    overflow:hidden;
}

.grid-item img{
    width:100%;
    display:block;
}


/* Global Dark Mode Styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f172a;
        color: #f3f4f6;
    }
    
    input, textarea, select {
        background-color: #1f2937;
        color: #f3f4f6;
        border-color: #374151;
    }
    
    input::placeholder, 
    textarea::placeholder {
        color: #9ca3af;
    }
    
    table {
        color: #f3f4f6;
    }
    
    table th {
        background-color: #1f2937;
        border-color: #374151;
    }
    
    table td {
        border-color: #374151;
    }
    
    a {
        color: #f59e0b;
    }
    
    a:hover {
        color: #f59e0b;
        text-decoration: underline;
    }
}

.dark body {
    background-color: #0f172a;
    color: #f3f4f6;
}

.dark input,
.dark textarea,
.dark select {
    background-color: #1f2937;
    color: #f3f4f6;
    border-color: #374151;
}

.dark input::placeholder,
.dark textarea::placeholder {
    color: #9ca3af;
}

.dark table {
    color: #f3f4f6;
}

.dark table th {
    background-color: #1f2937;
    border-color: #374151;
}

.dark table td {
    border-color: #374151;
}

.dark a {
    color: #f59e0b;
}

.dark a:hover {
    color: #fbbf24;
}
