/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #fff;
    overflow-x: hidden;
}

/* Container */
.hero-main {
    background: linear-gradient(145deg, #0a1b3f, #09152e);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
.navbar {
    background: linear-gradient(145deg, #0a1b3f, #09152e);
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.logo img {
    width: 100px;
    /* height: 40px; */
    border-radius: 5px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #d4d8e0;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.btn-light {
    background: #fff;
    color: #0a1b3f;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-light:hover {
    background: #e4e6eb;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    background-size: cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    color: #c8cbd3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-dark {
    background: #fff;
    color: #0a1b3f;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}


/* portfolio  section starts*/
.portfolio {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    padding: 60px 20px;
}

.portfolio h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #12203d;
    margin-bottom: 10px;
}

.subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.portfolio-card {
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    height: 300px;
    position: relative;
    overflow-y: hidden;
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
}

.portfolio-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 20px;
}

.portfolio-card img {
    width: 60%;
    border-radius: 10px;
    object-fit: cover;
    margin: auto;
    text-align: center;
}

/* Background color variations */
.light-blue {
    background-color: #eaf3ff;
}

.light-orange {
    background-color: #fff3e6;
}

.light-purple {
    background-color: #e8f0ff;
}

.light-red {
    background-color: #ffeaea;
}

.pink {
    background-color: #ffe9f0;
}

.mint-green {
    background-color: #eafff2;
}

.teal {
    background-color: #e8fbff;
}

.soft-yellow {
    background-color: #fff7e5;
}

.btn-dark:hover {
    background: #e4e6eb;
}

/* portfolio section end */

/* about section start */
.about-preview {
    width: 100%;
    margin: auto;
    max-width: 1100px;
    padding: 80px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    max-width: 700px;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #12203d;
    margin-bottom: 10px;
}

.about-text p {
    color: #5e6a78;
    font-size: 1rem;
    line-height: 1.6;
}

.discover-btn {
    background-color: #0c1c38;
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.discover-btn:hover {
    background-color: #1e325d;
}

/* about section end */

/* footer start */

/* --- Top Blue Banner --- */
.contact-banner {
    background: linear-gradient(90deg, #3151b7, #4ca0d9);
    color: #fff;
    padding: 70px 20px;
    border-radius: 12px;
    max-width: 1100px;
    margin: 60px auto 40px auto;
}

.contact-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-banner .btn {
    background: #fff;
    color: #0c1c38;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-banner .btn:hover {
    background: #f0f0f0;
}

/* --- Main Footer --- */
.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 10px;
}

.footer-logo h3 {
    font-size: 1.2rem;
    color: #0c1c38;
    margin-bottom: 15px;
}

.footer-desc {
    color: #5e6a78;
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-nav a {
    color: #0c1c38;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3151b7;
}

/* --- App Store Buttons --- */
.app-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.app-links img {
    height: 45px;
    transition: transform 0.3s ease;
}

.app-links img:hover {
    transform: scale(1.05);
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #0c1c38;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #3151b7;
}

/* --- Copyright --- */
.copyright {
    color: #5e6a78;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* footer end */


/* about */
/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
}

/* Our Story */
.about-story {
    background: #fff;
    height: 500px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.story-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url("https://images.unsplash.com/photo-1600880292089-90a7e086ee0c?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
}

.story-image::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.story-content {
    position: absolute;
    bottom: 30px;
    /* pushes text near bottom */
    left: 30px;
    right: 30px;
    z-index: 2;
}

.story-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.story-content p {
    line-height: 1.6;
    color: #fff;
    max-width: 600px;
}

/* Optional: dark overlay for text readability */
.about-story::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}


/* Vision & Mission Cards */
.vision-mission {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.icon {
    margin: 0 16px;
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.vision h3 {
    color: #fff;
    font-size: 30px;
}

.mission h3 {
    color: #fff;
    font-size: 30px;

}

.card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.v-heading {
    width: 35%;
    margin: auto;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.vone {
    background-color: #4d95c4;
}

.vtow {
    background-color: #0f1e3a;
}

/* Core Values */
.core-values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.values-text {
    flex: 1 1 50%;
}

.values-text h3 {
    font-size: 1.8rem;
    color: #0a1b3f;
    margin-bottom: 20px;
}

.values-text p {
    margin-bottom: 10px;
    color: #444;
    font-size: 1rem;
}

.values-text strong {
    color: #06a3da;
}

.values-image {
    flex: 1 1 45%;
}

.values-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* Section Layout */
.services-section {
    padding: 80px 20px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 2rem;
    color: #0a1b3f;
    margin-bottom: 10px;
    font-weight: 700;
}

.services-header p {
    color: #666;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px 30px;
    justify-items: center;
}

/* Card */
.service-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 50px 25px 35px;
    max-width: 360px;
    text-align: left;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon {
    position: absolute;
    top: -25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #d7ecf7;
    color: #0b72b9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Text */
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    margin-top: 35px;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar {
        justify-content: space-between;
        padding: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        justify-content: space-between;
        padding: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .about-preview {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-btn {
        align-self: flex-start;
    }

    .contact-banner h2 {
        font-size: 1.2rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .app-links img {
        height: 40px;
    }

    .about-story {
        flex-direction: column;
    }

    .vision-mission {
        flex-direction: column;
    }

    .core-values {
        flex-direction: column-reverse;
    }

    .card {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-card {
        max-width: 100%;
    }
}

/* blog header */
.blog {
    padding: 80px 20px;
}

.highlighted-blogs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.header input {
    padding: 10px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab {
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.tab:hover {
    background-color: #e9ecef;
}

/* Blog Grid */
.blog-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.blog-grid.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Card */
.blog-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    border-radius: 6px;
}

.blog-card h3 {
    font-size: 18px;
    color: #000;
    margin: 10px 0;
}

.blog-card p {
    font-size: 14px;
    color: #555;
}

.blog-card a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.blog-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tabs {
        width: 100%;
        justify-content: flex-start;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .tab {
        font-size: 12px;
        padding: 8px 10px;
    }

    .blog-card {
        padding: 15px;
    }

    .blog-card h3 {
        font-size: 16px;
    }

    .blog-card p,
    .blog-card a {
        font-size: 12px;
    }
}

.contact-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}

.contact-info h2 {
    font-size: 32px;
    color: #0a2540;
}

.contact-info p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.info-list li {
    margin: 10px 0;
    color: #000;
    font-size: 15px;
}

.social h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.social ul {
    list-style: none;
    padding: 0;
}

.social ul li {
    margin-bottom: 8px;
}

.social ul li a {
    color: #0a2540;
    text-decoration: none;
    transition: 0.2s;
}

.social ul li a:hover {
    color: #007bff;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
}

.contact-form button {
    background-color: #0a2540;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #007bff;
}

@media (max-width: 768px) {
    .highlighted-blogs {
        flex-direction: column;;
    }
    .contact-info {
        margin-bottom: 30px;
    }

    .vision h3 {
    color: #fff;
    font-size: 20px;
}
  .mission h3 {
    color: #fff;
    font-size: 20px;
}
.vision-mission{
    margin-top: 50px;
}
}