* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

section {
    padding: 70px 20px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a263c;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #1a263c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero {
    background: #000;
    height: 60vh; /* As required - not full page */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.hero-logo {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #ffffff;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    color: #ffffff; /* Kept white for contrast on dark background */
}

.btn {
    display: inline-block;
    background: #1a263c;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #1a263c;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(26, 38, 60, 0.1);
}

.btn:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 38, 60, 0.3);
}

/* About Section */
.about {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a263c;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #000000;
}

.about-video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.about-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(26, 38, 60, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 35px 20px;
    border-top: 4px solid #1a263c;
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(26, 38, 60, 0.2);
    background: #f0f8ff;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a263c;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a263c;
}

.service-card p {
    color: #000000; /* Made text black as requested */
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    background: #f0f8ff;
    text-align: center;
    padding: 80px 20px;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(26, 38, 60, 0.1);
    border: 1px solid #e1e8f0;
}

.testimonial-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d; /* Professional gray */
    margin-bottom: 30px;
}

.rating {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #f39c12; /* Warm gold for stars */
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #000000; /* Made text black as requested */
    margin-bottom: 30px;
    line-height: 1.7;
}

.client-info {
    border-top: 1px solid #ecf0f1;
    padding-top: 20px;
}

.client-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a263c;
}

.services-provided {
    color: #000000; /* Made text black as requested */
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a263c;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.3rem;
    color: #2980b9;
    min-width: 24px;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a263c;
}

.contact-text p, .contact-text a {
    color: #000000;
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-text a {
    color: #2980b9;
    font-weight: 600;
}

.contact-text a:hover {
    color: #1a263c;
    text-decoration: underline;
}

.contact-text strong {
    color: #1a263c;
    font-weight: 600;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    color: #000000;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2980b9;
    outline: none;
    box-shadow: 0 0 0 2px rgba(41, 128, 185, 0.2);
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

#formMessage {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

/* Footer */
.footer {
    background: #1a263c; /* Dark blue as required */
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #ecf0f1;
}

.footer-logo {
    text-align: center;
    margin-bottom: 15px;
}

.footer-logo-img {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #2980b9;
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.footer-column ul.footer-links li {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column ul.footer-links li strong {
    color: #ffffff;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2980b9;
    color: white;
    transform: translateY(-3px);
}

.credibility-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.badge {
    background: #2980b9;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    color: #ffffff;
    font-size: 0.9rem;
}

.powered-by {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #ffffff; /* Kept white for footer */
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.7rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-video-container {
        max-width: 100%;
        padding-top: 56.25%; /* Maintain 16:9 aspect ratio */
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Additional Blue Theme Elements */
.highlight {
    color: #2980b9;
    font-weight: 600;
}

.blue-background {
    background-color: #f0f8ff;
}

.blue-border {
    border: 1px solid #d0e1f9;
}

.blue-accent {
    background-color: #2980b9;
    color: white;
}

/* Careers Section */
.careers {
    background: #ffffff;
    padding: 70px 20px;
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.careers-header h2 {
    color: #1a263c;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.careers-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.career-highlight-box {
    background: linear-gradient(135deg, #3498db 0%, #1a263c 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.career-highlight-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.company-overview {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-overview h3 {
    color: #1a263c;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #2980b9;
}

.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.overview-card h4 {
    color: #1a263c;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-card h4 i {
    color: #2980b9;
}

.overview-card p {
    color: #000000; /* Made text black as requested */
    line-height: 1.6;
    margin-bottom: 15px;
}

.overview-card ul {
    color: #000000; /* Made text black as requested */
    padding-left: 20px;
    line-height: 1.6;
}

.overview-card li {
    margin-bottom: 8px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.detail-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(26, 38, 60, 0.1);
    border-top: 3px solid #2980b9;
    border: 1px solid #e1e8f0;
}

.detail-card h3 {
    color: #1a263c;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.detail-card ul {
    color: #000000; /* Made text black as requested */
    padding-left: 20px;
    line-height: 1.6;
}

.detail-card li {
    margin-bottom: 12px;
}

.apply-section {
    background: #1a263c;
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.apply-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.apply-section p {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.apply-button {
    display: inline-block;
    background: #1a263c; /* Changed to dark blue to match live site */
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #1a263c;
    font-size: 1rem;
}

.apply-button:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 38, 60, 0.3);
}
