/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-text p {
    color: #e5e7eb;
    font-size: 12px;
    font-weight: 400;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #60a5fa;
}

.nav a.active {
    color: #60a5fa;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
}

.header-phone i {
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #60a5fa;
}

.quote-btn {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.quote-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('asset-img/web1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(30, 58, 138, 0.4), rgba(30, 64, 175, 0.6));
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    position: relative;
    z-index: 11;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #e5e7eb;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    position: relative;
    z-index: 11;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #d1d5db;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    position: relative;
    z-index: 11;
}

.learn-more-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 11;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.learn-more-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Excellence Section */
.excellence {
    padding: 80px 0;
    background: white;
}

.excellence-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.excellence-text {
    max-width: 800px;
    text-align: center;
}

.excellence-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 30px;
    font-weight: 700;
}

.excellence-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.8;
}

.excellence-text .learn-more-btn {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.excellence-text .learn-more-btn:hover {
    transform: translateY(-2px);
}

/* Excellence Slider */
.excellence-slider {
    margin-top: 50px;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.slides-container {
    position: relative;
    width: 100%;
    max-width: 1700px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-text h3 {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 58, 138, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(30, 58, 138, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #1e3a8a;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #1e3a8a;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: #60a5fa;
    border-color: #60a5fa;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-content {
    text-align: center;
}

.features-content h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 700;
}

.features-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
}

.feature-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services .container {
    max-width: 100%;
    padding: 0 40px;
}

.services-content {
    text-align: center;
}

.services-content h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 50px;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(30, 64, 175, 0.7));
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 64, 175, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #6b7280;
}

.contact-item i {
    color: #1e3a8a;
    font-size: 18px;
    width: 20px;
}

.social-media {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-media a {
    color: #6b7280;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #1e3a8a;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #1e40af;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    text-align: center;
}

.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.newsletter button {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter button:hover {
    transform: translateY(-2px);
}

.newsletter-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.newsletter-message.success {
    background: rgba(209, 250, 229, 0.2);
    color: #a7f3d0;
    border: 1px solid rgba(167, 243, 208, 0.3);
}

.newsletter-message.error {
    background: rgba(254, 226, 226, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(252, 165, 165, 0.3);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #d1d5db;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-btn {
    background: #e5e7eb;
    color: #333;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-btn::before {
    content: "💬";
    font-size: 16px;
}

.chat-btn:hover {
    background: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .services-grid {
        max-width: 2000px;
    }
    
    .service-card {
        height: 450px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-overlay {
        background: linear-gradient(rgba(30, 58, 138, 0.5), rgba(30, 64, 175, 0.7));
    }
    
    .hero-title {
        text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    }
    
    .hero-subtitle,
    .hero-description {
        text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }
    
    .excellence-content {
        justify-content: center;
        text-align: center;
    }
    
    .excellence-text {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .features-content {
        text-align: center;
    }
    
    .features-description {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .services-content {
        text-align: center;
    }
    
    .services-description {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .service-card {
        height: 250px;
    }
    
    .services .container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .excellence-slider {
        margin-top: 30px;
        max-width: 100%;
    }
    
    .slides-container {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slide-text {
        padding: 20px;
    }
    
    .slide-text h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .excellence-text h2,
    .features-content h2,
    .services-content h2,
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .slide-text {
        padding: 15px;
    }
    
    .slide-text h3 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
}

/* About Page Styles */
.about-page {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 120px 0 80px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 600px;
}

.about-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    background: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 3rem;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    max-width: 600px;
}

/* Responsive About Page */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
    }
    
    .about-content {
        padding: 40px 30px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-phone {
        display: none;
    }
    
    .about-page {
        padding: 100px 0 60px;
    }
    
    .about-content {
        padding: 30px 20px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
}

/* Services Page Styles */
.services-page {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 120px 0 80px;
}

.services-page-content {
    text-align: center;
}

.services-page-content h2 {
    font-size: 4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.services-page-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 20px;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-page-grid .service-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.services-page-grid .service-card:hover {
    transform: translateY(-5px);
}

.services-page-grid .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page-grid .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(30, 64, 175, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
}

.services-page-grid .service-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(30, 64, 175, 0.3));
}

.services-page-grid .service-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

/* Responsive Services Page */
@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-page-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 100px 0 60px;
    }
    
    .services-page-content h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .services-page-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-page-grid .service-card {
        height: 300px;
    }
    
    .services-page-grid .service-overlay h3 {
        font-size: 1.1rem;
    }
}

/* Contact Page Styles */
.contact-page {
    min-height: calc(100vh - 200px);
    background: white;
    padding: 120px 0 80px;
}

.contact-page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-content h2 {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-page-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page-details h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.6;
}

.contact-page-item i {
    color: #1e3a8a;
    font-size: 18px;
    width: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-page-item span {
    color: #333;
    font-size: 1rem;
}

.contact-page-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contact-page-social a {
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease;
}

.contact-page-social a:hover {
    color: #1e3a8a;
}

.contact-page-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 12px 0;
    margin-bottom: 30px;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-bottom-color: #1e3a8a;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
    color: #9ca3af;
}

.contact-page-form textarea {
    height: 120px;
    resize: vertical;
    min-height: 100px;
}

.contact-page-form button {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block;
    margin: 0 auto;
    width: auto;
}

.contact-page-form button:hover {
    background: #1e40af;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-page-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-page-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 0 60px;
    }
    
    .contact-page-content h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .contact-page-form {
        padding: 30px 20px;
    }
    
    .contact-page-details h3 {
        font-size: 1.3rem;
    }
    
    .contact-page-item {
        margin-bottom: 20px;
    }
    
    .contact-page-item span {
        font-size: 0.95rem;
    }
}

/* Careers Page Styles */
.careers-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.careers-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.careers-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.15), rgba(30, 64, 175, 0.25));
    z-index: 2;
}

.careers-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 40px;
    text-align: center;
    color: white;
}

.careers-hero-content h2 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.careers-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero-content .career-email {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.careers-hero-content .career-email:hover {
    color: #93c5fd;
}

/* Responsive Careers Page */
@media (max-width: 1024px) {
    .careers-hero-content h2 {
        font-size: 3.5rem;
    }
    
    .careers-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        min-height: calc(100vh - 80px);
    }
    
    .careers-hero-content {
        padding: 30px 20px;
    }
    
    .careers-hero-content h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .careers-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .careers-hero-content h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .careers-hero-content p {
        font-size: 0.95rem;
    }
}
