/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
}

/* Header */
header {
    width: 100%;
    background: #0b3c59;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
}

header .logo {
    font-size: 28px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    color: #00d4ff;
}

/* Mobile Menu */
.menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 120px 40px 60px;
}


/* Gallery */
.gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    width: 300px;
    border-radius: 10px;
}

/* Team */
.team {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.team .member {
    padding: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Map placeholder */
.map {
    height: 300px;
    background: #ddd;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}


/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; background: #f9f9f9; }

/* Header */
header {
    width: 100%;
    background: #0c41de; /* Light gray color */
    color: #0b3c59; /* Dark text for contrast */
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
}

/* Menu links */
nav ul li a {
    color: #0b3c59; /* Dark text for readability */
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    color: #005b80; /* Hover color */
}


header .logo { font-size: 28px; font-weight: bold; }
nav ul { list-style: none; display: flex; align-items: center; }
nav ul li { margin-left: 25px; }
nav ul li a { color: white; text-decoration: none; font-size: 18px; }
nav ul li a:hover { color: #00d4ff; }
.menu-btn { display: none; font-size: 30px; cursor: pointer; }

/* Sections */
.section { padding: 120px 40px 60px; }

/* Hero */
.hero { height: 90vh; background: linear-gradient(to right, #0b3c59, #005b80); color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.hero h1 { font-size: 50px; margin-bottom: 20px; }
.hero p { font-size: 20px; }

/* Company Profile & Services */
.company-profile h2,
.services h2 { font-size: 32px; color: #0b3c59; margin-bottom: 20px; text-align: center; }
.company-profile p { font-size: 18px; margin-bottom: 15px; max-width: 900px; margin-left: auto; margin-right: auto; text-align: justify; }
.services ul { max-width: 900px; margin: 0 auto; padding-left: 20px; }
.services ul li { font-size: 18px; margin-bottom: 12px; list-style: disc; }

/* Footer */ 
footer { background: #0c41de; color: white; text-align: center; padding: 10px; }

/* Responsive */
@media (max-width: 768px) {
    nav ul { display: none; flex-direction: column; background: #0b3c59; position: absolute; top: 70px; right: 0; width: 200px; padding: 20px; }
    nav ul li { margin: 10px 0; }
    .menu-btn { display: block; }
}

/* Vision & Mission Section */
.vision-mission h2 {
    font-size: 32px;
    color: #0b3c59;
    margin-bottom: 20px;
    text-align: center;
}

.vision, .mission {
    max-width: 900px;
    margin: 20px auto;
    background: #f0f4f8;
    padding: 20px;
    border-radius: 10px;
}

.vision h3, .mission h3 {
    color: #005b80;
    margin-bottom: 10px;
    font-size: 24px;
}

.vision p, .mission ul {
    font-size: 18px;
    line-height: 1.6;
}

.mission ul {
    list-style: disc;
    padding-left: 20px;
}

/* Key Value Section */
.key-value {
    max-width: 900px;
    margin: 20px auto;
    background: #f0f4f8; /* same background as vision & mission */
    padding: 20px;
    border-radius: 10px;
}

.key-value h3 {
    color: #005b80; /* same color as vision & mission titles */
    margin-bottom: 10px;
    font-size: 24px;
}

.key-value p {
    font-size: 18px;
    line-height: 1.6;
}

/* Logo Image */
header .logo img {
    height: 50px; /* Adjust the height as needed */
    width: auto;
}

.hero {
    height: 800px; /* adjust height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative; /* needed for overlay */
    overflow: hidden;
}

/* Home background */
.home-hero {
    background-image: url('images/photo1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* About background */
.about-hero {
    background-image: url('images/photo3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for readability */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* adjust darkness */
    z-index: 0;
}

/* Text above overlay */
.hero h1,
.hero p {
    position: relative;
    z-index: 1;
}

/* Left Image */
.services-image img {
    width: 250px;          
    height: auto;
    border-radius: 10px;
    display: block;
}


.partners {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.partners h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0b3c59;
}

/* Grid container */
.partners {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.partners h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0b3c59;
}

.partners-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* exactly 7 logos per row */
    gap: 1in; /* space between logos, adjust if needed */
    justify-items: center; /* center each logo horizontally */
    align-items: center; /* center vertically */
}

.partner-logo {
    width: 120px; /* adjust logo size */
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 1400px) {
    .partners-container {
        grid-template-columns: repeat(5, 1fr); /* 5 logos per row */
        gap: 0.7in;
    }
}

@media screen and (max-width: 1000px) {
    .partners-container {
        grid-template-columns: repeat(3, 1fr); /* 3 logos per row */
        gap: 0.5in;
    }
}

@media screen and (max-width: 600px) {
    .partners-container {
        grid-template-columns: repeat(2, 1fr); /* 2 logos per row */
        gap: 0.3in;
    }
}


/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #f0f8ff; /* light blue background */
}

.services-section h2 {
    text-align: center;
    font-size: 50px;
    color: #0b3c59;
    margin-bottom: 40px;
    margin-top: 2cm; /* space above the form */
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.services-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.services-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-list .service-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #00509e;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 20px;
    justify-content: center;
}

.services-list .service-item.alt {
    background-color: #d0e1f9;
    color: #003366;
}

.services-list .service-item .number {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    border: 2px solid #003366;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-weight: bold;
    background-color: #fff;
    color: #003366;
}

/* Strength Section (blue theme) */
.strength-section {
    padding: 60px 20px;
    background-color: #f0f8ff; /* light blue background like Services */
}

.strength-section h2 {
    text-align: center;
    font-size: 50px;
    color: #0b3c59; /* dark blue for title */
    margin-bottom: 40px;
}

.strength-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.strength-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.strength-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.strength-list .strength-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #00509e; /* primary blue */
    color: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 20px;
    justify-content: center;
}

.strength-list .strength-item.alt {
    background-color: #d0e1f9; /* alternate light blue */
    color: #003366; /* dark blue text */
}

.strength-list .strength-item .number {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    border: 2px solid #003366; /* number border */
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-weight: bold;
    background-color: #fff;
    color: #003366; /* number text */
}


/* Experience Section */
.experience-section {
    padding: 60px 20px;
    background-color: #f0f8ff;
}

.experience-section h2 {
    text-align: center;
    font-size: 36px;
    color: #0b3c59;
    margin-bottom: 40px;
}

.experience-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

/* Maps styling - larger size */
.maps-container {
    flex: 1 1 400px; /* grow, shrink, base width */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-image {
    width: 100%;
    max-width: 1000px; /* remove previous max-width */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Projects lists styling */
.projects-container {
    flex: 1 1 00px; /* grow, shrink, base width */
}

.projects-group {
    margin-bottom: 150px;
}

.projects-group h3 {
    color: #00509e;
    font-size: 40px;
    margin-bottom: 15px;
}

.projects-group ul {
    list-style: none;
    padding-left: 0;
}

.projects-group ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #003366;
}

/* Add checkmark before each li */
.projects-group ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00509e;
}

/* Responsive for smaller screens */
@media screen and (max-width: 1000px) {
    .experience-container {
        flex-direction: column;
        align-items: center;
    }

    .maps-container, .projects-container {
        flex: 1 1 100%;
    }
}

/* Add perspective to the container for 3D */
.services-container,
.strength-container {
    perspective: 1000px;
}

/* Active 3D pop effect */
.services-list .service-item.active,
.strength-list .strength-item.active {
    transform: rotateY(15deg) translateZ(30px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth hover effect (optional) */
.services-list .service-item:hover,
.strength-list .strength-item:hover {
    transform: rotateY(10deg) translateZ(15px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}


/* Contact Section & Footer Base */
.section.db {
    padding: 60px 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

/* Social Media Section */
#social-media {
    margin-bottom: 40px;
    text-align: center;
}

#social-media h1.heading-3d {
    font-size: 40px;
    color: #0b3c59;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 80px;
}

#social-media p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.social-icons a {
    display: inline-block;
    margin: 5px 15px;
    padding: 10px 20px;
    background-color: #8d9092;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a i {
    margin-right: 8px;
}

.social-icons a:hover {
    transform: scale(1.1);
    background-color: #888496;
}


/* Core Values Section */
.key-value {
    padding: 80px 40px;
    background: #f2f4f8;
    transition: background 0.4s ease;

}

.heading-3d {
    text-align: center;
    font-size: 36px;
    color: #0b3c59;
    margin-bottom: 50px;
}

/* Grid Layout */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Card */
.core-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s ease;
}

.core-card i {
    font-size: 40px;
    color: #0b3c59;
    margin-bottom: 20px;
}

.core-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0b3c59;
}

.core-card p {
    font-size: 15px;
    color: #555;
}

/* Hover 3D Effect */
.core-card:hover {
    transform: translateY(-10px) scale(1.03);
}

/* Animation Active */
.core-card.show {
    transform: translateY(0);
    opacity: 1;
}

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 20px;
    background: #f4f6f8;
}

/* CONTAINER FOR LEFT INFO AND MAP */
.contact-container {
    display: flex;
    justify-content: flex-start; /* Left align info */
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap; /* Stack on small screens */
}

/* LEFT INFO */
.contact-info {
    flex: 0 0 45%; /* 45% width */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    align-items: flex-start;
}

.icon {
    font-size: 28px;
    color: #0b3c59;
}

.info-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.info-card a {
    color: #007bff;
    text-decoration: none;
    font-size: 15px;
}

.info-card a:hover {
    text-decoration: underline;
}

/* RIGHT MAP */
.contact-map {
    flex: 1 1 50%; /* Take remaining space */
}

.contact-map iframe {
    width: 100%; /* Fixed overflow issue */
    height: 100%;
    min-height: 420px;
    border-radius: 20px;
    border: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* CONTACT FORM & SOCIAL MEDIA */
.contact-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    align-items: flex-start; /* Align left and right top */
}

.contact-left,
.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 45%;
}

/* Move titles down from top */
.contact-left h1,
.contact-right h1 {
    margin-top: 100px;
    margin-bottom: 25px;
    font-size: 32px;
    color: #0b3c59;
}

/* Contact Form */
.contact-form {
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    padding: 12px;
    background: #0b3c59;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #062739;
}

#status {
    margin-top: 10px;
    font-size: 14px;
    color: green;
}

/* SOCIAL MEDIA */
.contact-right {
    text-align: center;
}

.social-icons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    padding: 12px;
    border-radius: 10px;
    background: #f4f6f8;
    color: #0b3c59;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #0b3c59;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper,
    .contact-container {
        flex-direction: column;
    }

    .contact-map iframe {
        min-height: 300px;
    }

    .contact-right {
        margin-top: 40px;
    }
}


