/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 100vh;
    animation: slideInLeft 1s ease-out forwards;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Projects Section */
.projects-section {

    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.project-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.project-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.project-link:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.skills-list {
    list-style: none;
    padding: 0;
}

.skills-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* .hero-section {
        min-height: 30vh;
        padding: 1.5rem 0.5rem;
    } */
}

/* Navbar Styles */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem 1.5rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
}

.navbar-left .logo img {
    height: 40px;
    display: block;
}

.navbar-nav {
    display: flex;
    gap: 2.2rem;
}

.navbar-nav a {
    color: #222;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    padding: 2px 0;
}

.navbar-nav a:hover {
    color: #e74c3c;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.navbar-cta {
    background: #222;
    color: #fff !important;
    border-radius: 24px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar-cta:hover {
    background: #e74c3c;
    color: #fff;
}

.navbar-search {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-search:hover {
    background: #f2f2f2;
}

/* Responsive Navbar */
@media (max-width: 900px) {
    .navbar-container {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .navbar-nav {
        justify-content: center;
        gap: 1.2rem;
        margin: 1rem 0;
    }

    .navbar-right {
        justify-content: center;
        gap: 0.8rem;
    }
}

@media (max-width: 600px) {
    .navbar-container {
        padding: 0.5rem;
    }

    .navbar-nav {
        flex-wrap: wrap;
        gap: 0.7rem;
        font-size: 0.98rem;
    }

    .navbar-cta {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wave-animation-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 200px;
    overflow: hidden;
    z-index: 4;
    pointer-events: none;
    margin-bottom: -10px;
}

.wave-animation {
    width: 16000px;
    height: 100%;
    animation: waveMove 10s linear infinite; /* slower for smoother loop */
  }
  
  @keyframes waveMove {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-8000px); }
  }

  


.page-header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}


.gh-content p {
    /* padding-left: 6.5rem;
    padding-right: 2rem; */
    color: var(--font-color);
}

/* Align page content with the feature image */
.gh-canvas {
    display: grid;
    grid-template-columns: [full-start] minmax(4vmin, auto) [wide-start] minmax(auto, 200px) [main-start] min(100% - 8vmin, 720px) [main-end] minmax(auto, 240px) [wide-end] minmax(4vmin, auto) [full-end];
}

.gh-canvas>* {
    grid-column: main-start / main-end;
}

/* Custom Card Styling */
.avcard {
    margin-top: 2rem;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    padding: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease-in-out;
}

.custom-card:hover {
    box-shadow: 0 12px 24px rgba(20, 17, 17, 0.15);
}

.custom-card h2 {
    /* padding-left: 6rem; */
    margin-top: 0;
}

/* Full-width CTA Section */
.cta-section {
    /* grid-column: full-start / full-end; */
    /* No longer needed here */
    background-color: #f9f9f9;
    color: var(--font-color);
    /* Standard dark text color */
    padding: 5rem 0;
    margin-top: 4rem;
    border-radius: 10px;
    /* Add a separator line */
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--font-color);
    /* Darker color for headings */
}

.cta-section p {
    font-size: 1.5rem;
    opacity: 0.9;
    padding: 0 !important;
    /* Override padding from .gh-content p */
}

@media (max-width: 991.98px) {
    .cta-section p {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .cta-content-col h2 {
        margin-right: 20px;
        max-width: 600px;
        font-size: 2rem;
        text-align: left;
        /* Add this if you want it left-aligned */
    }
}

.btn-cta-primary,
.btn-cta-secondary {
    border-radius: 5px;
    padding: 12px 24px;
    font-weight: 600;
    margin: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #0d2a8a;
    /* Blue border for both */
}

.btn-cta-primary {
    background-color: #0d2a8a;
    /* Blue background */
    color: #fff;
    /* White text */
}

.btn-cta-primary:hover {
    background-color: #0b2473;
    /* Darker blue on hover */
    border-color: #0b2473;
    color: #fff;
}

.btn-cta-secondary {
    background-color: transparent;
    color: #0d2a8a;
    /* Blue text */
}

.btn-cta-secondary:hover {
    background-color: #0d2a8a;
    /* Blue background on hover */
    color: #fff;
    /* White text on hover */
}

/* Read More Button Styling */
.btn-read-more {
    margin-top: 2rem;
    height: 28px;
    width: 120px;
    background-color: #66b4d6;
    /* Bright blue */
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 2rem;
    /* Increase font size */
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: #0069d9;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
}






/* "Our Approach" Section Styling */
.our-approach-section {
    margin-top: 4rem;
    padding: 2rem 0;
    /* Removed the conflicting padding-left */
}

/* Apply padding only to the first column (the text) */
.our-approach-section .col-lg-6:first-child {
    padding-right: 2rem;
    /* Adds some space between text and image */
}

.our-approach-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.our-approach-section p {
    font-size: 1.5rem;
    color: var(--font-color);
    line-height: 1.7;
    padding: 0 !important;
    /* Override other p styles */
}

.tech-list {
    list-style: none;
    padding: 0;
    margin-top: 2.5rem;
}

.tech-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.tech-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: #B4D6E3;
    /* Blue color for the icon */
}

.tech-list strong {
    margin-left: 10px;
}

.our-approach-section img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 70%;
    /* Makes the image slightly smaller than its column */
    border-radius: 100px;
    /* Increases the corner roundness */
    display: block;
    /* Helps with margin auto */
    margin: 0 auto;
    /* Centers the image in its column */
}

.page-wrapper {
    display: flex;
    flex-direction: column;
}

.cta-content-col {
    text-align: left;
    padding-left: 5rem;
}

@media (max-width: 991.98px) {
    .cta-content-col {
        padding-left: 1rem;
    }
}

.cta-section-new h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--font-color);
    margin-bottom: 1rem;
    /* padding-left: 6rem; */
    /* Pushes the heading to the right */
}

.cta-section-new p {
    color: var(--font-color);
}

/* Carousel Styling */
#imageCarousel .carousel-item {
    height: 400px;
    /* You can adjust this height */
}

#imageCarousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the area without distortion */
}

/* --- Project Cards Section --- */
.project-cards-section {
    padding: 4rem 0;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    height: 350px;
    /* Giving a fixed height for uniform look */
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card .project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e7f1ff;
    padding: 8px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 2px solid #ace1f4;
    /* Example color */
}

.project-card:hover .project-card-overlay {
    transform: translateY(0);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card-overlay h5 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.project-card-overlay a {
    color: #73d2f5;
    /* Example color */
    text-decoration: none;
    font-weight: 600;
}

.project-card-overlay a:hover {
    text-decoration: underline;
}

/* Making the CTA section buttons more distinct */
.cta-section-new .btn-read-more {
    background-color: #73d2f5;
    /* A bootstrap primary blue */
}

/* --- Project Title Section --- */
.project-title-section {
    text-align: center;
    margin-bottom: 3rem;
}

.project-title-section .section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #e7f1ff;
    border-radius: 20px;
    color: #0056b3;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0;
}

.project-title-section .section-kicker i {
    margin-right: 8px;
}

.project-title-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.project-title-section .section-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--font-color);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* --- Page Header Responsive --- */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .article-image {
        max-width: 100%;
        height: auto;
        margin-bottom: 1.5rem;
    }
}

.footer-section {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .project-title-section {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }
}

/* --- Footer Responsive --- */
/* @media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
        width: 100%;
    }
} */

/* .page-header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

figure.article-image {
    margin: 2rem 0 3rem;
    width: 100%;
    height: auto;
}

figure.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


.gh-content p {
    font-size: 1.2rem;
} */


body {
    background-color: #f4f7f6;
}

.contact-hero {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding:10px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 5rem;
    font-weight: 600;
    margin: 0;
}

.contact-hero p {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-hero a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.page-wrapper-contact {
    padding: 5rem 1rem;
    max-width: 1100px;
    margin: -5rem auto 0;
    /* Pulls the content up to overlap the hero slightly */
    position: relative;
    z-index: 3;
}

.address-card,
.contact-form-wrapper {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.address-card h5 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.address-card p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.address-card i {
    color: #333;
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-form-wrapper h4 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form-wrapper .form-group {
    margin-bottom: 1rem;
}

.contact-form-wrapper .form-control {
    background-color: #f4f7f6;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1.5rem;
}

.contact-form-wrapper .form-control:focus {
    background-color: #fff;
    border-color: #0d6efd;
    box-shadow: none;
}

.contact-form-wrapper .btn-primary {
    background-color: #0d6efd;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Target the button within the contact form wrapper */
.contact-form-wrapper .btn-primary {
    background-color: var(--primary-color);
    /* This is a green color */
    border-color: var(--primary-color);
}

/* Optional: Change the hover color as well */
.contact-form-wrapper .btn-primary:hover {
    background-color: var(--hover-color);
    /* A darker green for hover */
    border-color: var(--hover-color);
}

@media (max-width: 991px) {
    .page-wrapper-contact {
        margin-top: -3rem;
        padding: 3rem 1rem;
    }

    .contact-hero {
        padding-top: 10px;
        height: 400px;
    }

    .contact-hero h1 {
        font-size: 400;
        margin-top: 3rem;
        font-size: 2.5rem;
    }
}

body {
    background-color: #f8f9fa;
}

.about-hero {
    position: relative;
    height: 45vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
}

.page-wrapper-about {
    padding: 4rem 1rem;
    max-width: 100vw;
    position: relative;
    z-index: 3;
}

.about-content-card {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.mission-section h3,
.team-section h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Responsive styles for the About page hero */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
        /* Smaller font for mobile */
    }

    .contact-hero {
        height: 50vh;
    }
    .contact-hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
      }
      .contact-hero-content p {
        font-size: 1rem;
        line-height: 1.3;
      }

    .page-wrapper-about {
        margin-top: -4rem;
        /* Reduce the negative margin */
    }

    .about-content-card {
        padding: 2rem;
        /* Reduce padding on the card */
    }
}


/* Temp fix */
.temp-fix {
    color: transparent;
}

.remove-bg-img {
    mix-blend-mode: multiply;
}

.services-section {
    border-top: none !important;
    margin-top: 0 !important;
}
@media (max-width: 600px) {
    .breadcrumb .current {
      font-size: 10px !important;     /* or your preferred smaller size */
      font-weight: 400;     /* optional: lighter weight for mobile */
    }
  }