
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: white;
    overflow-x: hidden;
}

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    width: 100%;
    height: 630px;
    background-image: url('https://imagedelivery.net/xaKlCos5cTg_1RWzIu_h-A/b9e07837-5d11-42b5-adcc-00a9d0ff6f00/public'); /* Using the same image as your banner */
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}
.main{
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-centered {
    max-width: 800px;
    text-align: center;
    padding: 20px;
    color: white;
}

.hero-content-centered h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content-centered .subtitle {
    color: #f0f0f0;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-content-centered .btn-primary {
    background-color: #0077cc;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content-centered h2 {
        font-size: 30px;
    }
}

@media (min-width: 992px) {
    .container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Buttons */
.btn-primary {
    background-color: #0076BA;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    max-width: 250px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    
}

.btn-primary:hover {
    background-color: #005d94;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.hero-content h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero-content h2 {
        font-size: 40px;
    }
}

@media (min-width: 1200px) {
    .hero-content h2 {
        font-size: 48px;
    }
}

.subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 18px;
    }
}

/* Contact Form */
.contact-form {
    padding: 24px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background: #fff;
    transition: border 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0076BA;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 118, 186, 0.3);
}

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

/* Experience Section */
.experience-section {
    background-color: #E8F4FF;
    padding: 60px 0;
    width: 100%;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .container2 {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    height: 200px;
}

.image-wrapper.large {
    grid-column: 1 / -1;
    height: 250px;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.grid-image:hover {
    transform: scale(1.05);
}

.content {
    padding: 20px 0;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    h2 {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    h2 {
        font-size: 36px;
    }
}

.description {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .description {
        font-size: 18px;
    }
}

.stats-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 300px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

@media (min-width: 576px) {
    .stat {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0076BA;
}

.stat-text {
    color: #333;
    font-size: 16px;
    max-width: 200px;
}

@media (min-width: 768px) {
    .stat-text {
        font-size: 18px;
    }
}

/* Services Section */
.container3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.title {
    font-size: 28px;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .title {
        font-size: 36px;
    }
}

.title-underline {
    border-bottom: 2px dashed #ccc;
    padding-bottom: 4px;
}

.title-highlight {
    background-color: #0066ff;
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    margin: 0.5rem 0;
    display: inline-block;
}

@media (min-width: 768px) {
    .title-highlight {
        margin: 0 0.5rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px;
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .service-item {
        flex-direction: row;
        gap: 20px;
    }
}

.icon-container {
    padding: 16px 0;
    flex-shrink: 0;
    font-size: 32px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.service-content p {
    color: #666;
    line-height: 1.6;
}

/* Services Section 2 */
.container4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

.hero-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

.services2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .services2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service2-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.service2-card:hover {
    transform: translateY(-5px);
}

.service2-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heart-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #0077cc;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.heart-icon:hover {
    background: #005fa3;
}

.service2-content {
    padding: 24px;
}

.service2-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.service2-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Banner Section */
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .banner-wrapper {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .banner-wrapper {
        height: 50vh;
        min-height: 500px;
    }
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://imagedelivery.net/xaKlCos5cTg_1RWzIu_h-A/b9e07837-5d11-42b5-adcc-00a9d0ff6f00/public');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.banner-content {
    max-width: 800px;
    text-align: center;
}

.main-heading {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .main-heading {
        font-size: 36px;
        margin-bottom: 32px;
    }
}

@media (min-width: 992px) {
    .main-heading {
        font-size: 42px;
    }
}

.action-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .action-button {
        padding: 16px 32px;
    }
}

.action-button:hover {
    background-color: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}