@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

/*
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #2563EB ; /* royal Blue */
    --primary-hover: #1D4ED8;  /* Darker Blue for hover effects */
    --secondary-color: #00a8cc; /* Cyan/Light Blue */
    --dark-bg: #1a1a2e;  /* Dark Blue/Black for contrast */
    --light-bg: #f4f7f6;  /* Very Light Gray for cards and sections */
    --text-color: #374151;  /* Dark Gray for readability */
    --white: #ffffff;   /* Pure White */     
    --third-color: #00e5ff; /* Bright Cyan/Neon Blue to match the image */
    --neon-blue: #00e5ff; /* Matches the cyan in the first image */
    --dark-bg: #111827; /* Dark background for contrast */
    --nav-height: 60px; /* Height of the navbar */
    --text-shadow: 2px 2px 4px rgb(0, 0, 0); /* Heavy shadow for readability */
}

body {
    font-family: "Inter", sans-serif; /* Modern, clean font */
    background: #f3f4f6; /* Light gray background for a clean look */

    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95); /* Slightly transparent white */
    backdrop-filter: blur(100%); /* Frosted glass effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
    position:sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;  
}

.navbar .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.navbar a {
    text-decoration: none;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: #00b4c8;
    letter-spacing: -0.5px;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}
/* Optional: Underline animation on hover */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background:  #00b4c8;
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2); /* Colored shadow */
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3); /* Enhanced shadow on hover */
}

.btn-primary::after {
    display: none;
}


/* Hero Section */
.hero {
    background-color: #00a1f0;
    background-image: linear-gradient(rgba(0, 10, 30, 0.7), rgba(0, 10, 30, 0.7)), url('BACKGROUNDIMAGE.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
   
}

.hero .container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 100%;
    z-index: 1;
    text-align: center;
}



.hero-content .btn-primary {
   margin-top: 20px;
    /* Suggestion: Make button match the highlight color */
    background-color: var(--secondary-color);
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 168, 204, 0.3);
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white) ;
    text-shadow: var(--text-shadow);
    line-height: 1.2;
    text-align: center;
}


.hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0; /* Slightly off-white is easier on the eyes than pure white */
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: var(--text-shadow);
    font-weight: 500; /* Medium weight helps legibility against lines */
    text-align: center;
}



/* Services */
.services {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Stats */
.stats {
    /* Uses the FIRST image (Blue City) */
    background-image: 
        linear-gradient(rgba(0, 10, 30, 0.85), rgba(0, 10, 30, 0.85)), 
        url('footerimage.png'); /* Ensure this file name matches your first image */
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: Creates a cool parallax scrolling effect */
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.stats .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-blue); /* Neon blue title */
    text-shadow: 0px 0px 10px rgba(0, 229, 255, 0.5); /* Glowing effect */
}

.about-description {
    max-width: 900px;
    margin: 0 auto 60px auto; /* Centers the text */
    font-size: 1.15rem;
    line-height: 1.8;
    
    /* Adds a dark box behind the text for perfect readability */
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--neon-blue); /* Stylish accent line on the left */
}

.stats-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

/* Handling both class names found in your HTML */
.detail-item, 
.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Icon Styling */
.detail-item i, 
.stat-item i {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px var(--neon-blue)); /* Makes icons glow */
}

/* Number Styling */
.detail-item h3, 
.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0;
    color: var(--white);
}

/* Label Styling */
.detail-item p, 
.stat-item p {
    font-size: 1.1rem;
    color: #cccccc; /* Light grey for softer contrast */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #141b35;
    color: #ffffff;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    margin-bottom: 0%;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-contact {
    flex: 1;
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #ffffff;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    font-size: 1rem;
}

/* Responsive Design */

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Tablet and Mobile Styles */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .stats-items {
        gap: 30px;
    }

    .detail-item, .stat-item {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar .container {
        padding: 0 15px;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 20px;
        display: block;
        color: var(--text-color);
    }

    .hero {
        min-height: 80vh;
        padding: 80px 0 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero .btn-primary {
        padding: 14px 35px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .stats {
        padding: 60px 0;
    }

    .stats .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .about-description {
        font-size: 1rem;
        padding: 20px;
        margin-bottom: 40px;
    }

    .stats-items {
        flex-direction: column;
        gap: 25px;
    }

    .detail-item, .stat-item {
        min-width: auto;
    }

    .detail-item h3, .stat-item h3 {
        font-size: 2.5rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact form {
        max-width: 100%;
        padding: 0 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-logo,
    .footer-contact {
        flex: none;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .stats .section-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 0.95rem;
        padding: 15px;
    }

    .detail-item h3, .stat-item h3 {
        font-size: 2rem;
    }

    .detail-item p, .stat-item p {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .footer-contact h3 {
        font-size: 1.3rem;
    }

    .contact-item span {
        font-size: 0.9rem;
    }
}
