/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 80px;
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.85);
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.03); */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    color: #0066FF;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-subtext {
    color: #666;
    font-size: 0.9rem;
    margin-top: -5px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066FF;
}

.phone-number a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phone-number a:hover {
    border-color: #0066FF;
    background-color: rgba(0, 102, 255, 0.05);
}

.phone-number i {
    color: #0066FF;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.subtitle {
    color: #0066FF;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-description {
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.form-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: #fff;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    position: relative;
}

.testimonial-slide {
    display: grid;
    text-align: left;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-slide::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
    z-index: -1;
}

.testimonial-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #0066FF;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 12px;
    background-color: #0066FF;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: #f3fafa;
}

.contact-heading {
    display: inline-block;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 600;
    border-bottom: 3px solid #0066FF; 
    padding-bottom: 0.5rem; 
}

.contact-form {
    /* max-width: 600px; */
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #F8F9FA;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.submit-btn {
    width: auto;
    padding: 1rem 2rem;
    background-color: #0066FF;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
    margin: 0 auto;
    display: block;
}

.submit-btn:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.2);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5%;
    background-color: #fff;
    min-height: calc(80vh - 65px);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3rem;
    color: #0066FF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero .submit-btn {
    width: auto;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    background-color: #fff;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
}

/* Features Section */
.features {
    padding: 2rem 5%;
    background-color: #fff;
    margin-top: -2rem;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.feature-item {
    flex: 1;
    text-align: center;
}

.feature-icon {
    color: #4CAF50;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.4;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 5% 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 5fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    color: #fff;
    font-size: 2rem;
}

.footer-brand .logo-subtext {
    color: #999;
}

.mission-statement {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: normal!important;
    margin-right: 10rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0066FF;
}

.footer h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #fff;
}

.more-link {
    color: #0066FF !important;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-links a {
        margin: 0 0.5rem;
    }

    .phone-number {
        margin-top: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .features-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand .logo {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer ul {
        text-align: center;
    }

    body {
        padding-top: 140px; /* Account for stacked navbar items on mobile */
    }

    .phone-number a {
        padding: 0.5rem 1rem;
    }
}

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: calc(80vh - 80px);
    background: url('Assets/Images/about_us.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 5%;
}

.hero-overlay {
    max-width: 900px;
    color: #fff;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.contact-form textarea {
    resize: none;
    font-family: inherit; /* Match input fields */
  }

/* Advantages Section */
.advantages {
    padding: 5rem 5%;
    background-color: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-icon img {
    height: 12rem;
}

.advantage-card h3 {
    color: #466794;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 2rem;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.2rem;
}

/* Commitment Section */
.commitment {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.commitment-content .highlight {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.cta-content a {
    display: inline-block; /* Restricts link size */
    text-decoration: none;
  }

/* Update Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        margin-bottom: 2rem;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 1.5rem 0;
    background-color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.row-group {
    display: flex;
    gap: 1rem; /* Adds spacing between Name and Email */
}

.row-group .form-group {
    flex: 1;
}

@media (max-width: 768px) {
    .row-group {
        flex-direction: column;
    }
}


/* .contact-form-section {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
} */

.contact-form-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-page .form-group {
    margin-bottom: 1.5rem;
}

.form-button{
    display: grid;
    justify-content: center;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 1rem;
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
    font-size: 1rem;
    background-color: #E8E8E8;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
}

.contact-page .form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    outline: none;
    border-color: #0066FF;
    /* background-color: #fff; */
    /* box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1); */
}

.contact-page .submit-btn {
    /* width: 100%; */
    padding: 1rem;
    background-color: #0066FF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-page .submit-btn:hover {
    background-color: #0052cc;
}

.map-section {
    margin-top: 4rem;
    width: 100%;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-page {
        padding: 2rem 0;
    }

    .contact-form-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .map-section {
        margin-top: 2rem;
    }

    .map-section iframe {
        height: 350px;
    }
}

/* Certificates Page Styles */
.certificates-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    background-color: #f8f9fa;
    min-height: calc(60vh - 80px);
}

.certificates-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.certificates-hero h1 {
    font-size: 3rem;
    color: #0066FF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.certificates-hero p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.certificates-hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificates-hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.certificates-section {
    padding: 4rem 5%;
    background-color: #fff;
}

.certificates-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.certificate-item {
    padding: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
}

.certificate-item h3 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.certificate-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Certificates Page CTA Section */
.certificates-section .cta-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 4rem 5%;
    margin: 4rem auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.certificates-section .cta-content {
    flex: 1;
}

.certificates-section .cta-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.certificates-section .cta-content p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.certificates-section .cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificates-section .cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.certificates-section .submit-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: auto;
    display: inline-block;
}

/* Update Responsive Design for Certificates Page */
@media (max-width: 768px) {
    .certificates-section .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
    }

    .certificates-section .cta-content {
        margin-bottom: 2rem;
    }

    .certificates-section .cta-content h2 {
        font-size: 2rem;
    }

    .certificates-section .cta-content p {
        font-size: 1.2rem;
    }
}

/* Certificates Overview Section */
.certificates-overview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-category {
    display: grid;
        background: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: transform 0.3s ease;
        align-items: end;
        justify-items: center;
}

.certificate-category:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    color: #0066FF;
}

.certificate-category h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.certificate-category ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.certificate-category ul li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.certificate-category ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0066FF;
}

.show-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.show-more:hover {
    gap: 0.8rem;
}

.show-more i {
    font-size: 0.8rem;
}

/* Update Responsive Design */
@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certificate-category {
        padding: 1.5rem;
    }

    .certificate-category h3 {
        font-size: 1.2rem;
    }
} 