body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* NAVIGATION */
/* NAVIGATION BAR */

header {
    background: #0c2d48;
    padding: 15px 8%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


/* Hover underline animation */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #8AA300;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #8AA300;
}

/* HERO */
.hero button {
    padding: 10px 20px;
    border: none;
    background: limegreen;
    color: white;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 50px 10%;
}

@media (max-width:768px){
section {
    padding: 40px 20px;
}
}


/* SERVICES */


/* FOOTER */


/* ABOUT HERO IMAGE */
.about-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ABOUT CONTENT */
.about-content {
    background: #eeeeee;
    padding: 60px 15%;
}

.about-title {
    color: #8AA300;
    font-size: 60px;
    margin-bottom: 20px;
}

.about-content h3 {
    color: #1c2c4c;
}

.about-content p {
    color: #333;
    line-height: 1.6;
    font-size: 18px;
}


.services-left h1 {
    color: #8AA300;
    font-size: 50px;
}

.services-left ul {
    margin-top: 30px;
    font-size: 18px;
}

.services-left li {
    margin-bottom: 20px;
    color: #1c2c4c;
}

/* RIGHT SIDE IMAGE */

.services-right img {
    width: 80%;
    height: auto;
}


.services-center h1 {
    color: #8AA300;
    font-size: 50px;
    margin-bottom: 40px;
}

.service-group {
    margin-bottom: 30px;
}

.service-group h3 {
    color: #1c2c4c;
    margin-bottom: 10px;
}

.service-group ul {
    list-style-position: inside;
    padding: 0;
}

.service-group li {
    margin: 6px 0;
    color: #1c2c4c;
}


/* SERVICES SECTION */
.services {
    background: #c4cc9a;
    padding: 70px 10%;
    text-align: center;
}

.services h1 {
    font-size: 50px;
    color: #8AA300;
    margin-bottom: 50px;
}

/* GRID LAYOUT */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}


/* SERVICE CARDS */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card i {
    font-size: 40px;
    color: #1c2c4c;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1c2c4c;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

.services-grid {
    grid-template-columns: 1fr;
}

.services h1 {
    font-size: 35px;
}

}

/* HERO */
.about-hero {
    position: relative;
    height: 100vh;
    background-image: url("images/about-banner.png");
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    color: white;
    font-size: 60px;
    background: rgba(0,0,0,0.4);
    padding: 15px 30px;
}

/* ABOUT SECTION */
.about-section {
    display: flex;
    padding: 70px 10%;
    gap: 40px;
    align-items: center;
}

@media (max-width:768px){

.about-section {
    flex-direction: column;
    text-align: center;
}

}


.about-text {
    flex: 1;
}

.about-text h2 {
    color: #8AA300;
}

.about-text p {
    line-height: 1.6;
    margin-top: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* MISSION & VISION */
.mission-vision {
    background: #c4cc9a;
    padding: 60px 10%;
    display: flex;
    gap: 40px;
}

@media (max-width:768px){
.mission-vision {
    flex-direction: column;
}
}


.mv-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

.about-section {
    flex-direction: column;
}

.mission-vision {
    flex-direction: column;
}

.about-hero h1 {
    font-size: 40px;
}

}


/* ABOUT */
.home-about {
    padding: 60px;
    text-align: center;
}


.btn {
    background: #8AA300;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background: #6f8500;
}


/* SERVICES */
.home-services {
    background: #f4f4f4;
    padding: 60px;
    text-align: center;
}

/* WHY US */
.why-us {
    padding: 60px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}


.why-card {
    background: #c4cc9a;
    padding: 30px;
    border-radius: 10px;
}

/* CTA */
.cta {
    background: #0c2d48;
    color: white;
    padding: 60px;
    text-align: center;
}

/* FOOTER */

/* MOBILE */
@media (max-width:768px){

.services-grid {
grid-template-columns: 1fr;
}

.why-grid {
grid-template-columns: 1fr;
}

}

/* HERO VIDEO BACKGROUND */

.hero {
position: relative;
height: 100vh;
overflow: hidden;
}

.hero-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -2;
}

/* Dark overlay */
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: -1;
}

/* Text content */
.hero-content {
position: relative;
color: white;
text-align: center;
top: 50%;
transform: translateY(-50%);
padding: 20px;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 50px);
}

.hero-content p {
    font-size: clamp(14px, 2.5vw, 20px);
    margin-bottom: 20px;
}

/* Mobile */
@media (max-width:768px) {

.hero-content h1 {
font-size: 30px;
}

.hero-content p {
font-size: 16px;
}

}


img {
    max-width: 100%;
    height: auto;
}

/* MODERN FOOTER */

.main-footer {
    background: #0c2d48;
    color: white;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 10%;
}

.footer-box h3 {
    margin-bottom: 15px;
    color: #8AA300;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #8AA300;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    background: white;
    color: #0c2d48;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #8AA300;
    color: white;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #081e30;
    font-size: 14px;
}

/* RESPONSIVE FOOTER */
@media (max-width:768px){

.footer-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.social-icons a {
    margin: 5px;
}

}

/* Click to call */
.footer-phone {
    color: #8AA300;
    text-decoration: none;
    font-weight: bold;
}

.footer-phone:hover {
    text-decoration: underline;
}

.tracking-section {
    padding: 80px 10%;
    text-align: center;
}

/* CONTACT FORM */

.contact form {
    max-width: 100%;
    margin: 0;
}


.contact input,
.contact textarea,
.contact select {
    width: 100%;
    padding: 14px 16px;
    margin-top: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    box-sizing: border-box;
}


.contact button {
    margin-top: 20px;
    background: #8AA300;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
}

.contact button:hover {
    background: #6f8500;
}

/* CONTACT LAYOUT */

.contact-container {
    display: flex;
    gap: 40px;
    padding: 40px 10%;
    align-items: stretch; /* KEY FIX */
}

/* Form Side */
.contact-form {
    flex: 1;
}


/* Mobile Responsive */
@media (max-width:768px){

.contact-container {
    flex-direction: column;
}

.contact-map iframe {
    height: 300px;
}

}

/* ACTIVE PAGE HIGHLIGHT */
nav a.active {
    color: #8AA300;
    font-weight: bold;
}

/* OUR TEAM SECTION */

.our-team {
    display: flex;
    align-items: stretch;
}

/* Image Side */
.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Side */
.team-content {
    flex: 1;
    background: #2c4a7a;
    color: white;
    padding: 60px;
}

.team-content h2 {
    color: #8AA300;
    font-size: 45px;
    margin-bottom: 20px;
}

.team-content p {
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width:768px){

.our-team {
    flex-direction: column;
}

.team-content {
    padding: 40px 20px;
}

}

/* ABOUT HERO SECTION */



/* Dark overlay */
.about-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* Text container */
.about-hero-content {
    position: relative;
    z-index: 2;
}

/* Title */
.about-hero h1 {
    color: white;
    font-size: 55px;
    background: rgba(0,0,0,0.5);
    padding: 15px 40px;
    border-radius: 5px;
}

/* SERVICES IMAGE BANNER */

.services-banner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.services-banner img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.services-banner img:hover {
    transform: scale(1.08);
}


/* Mobile */
@media (max-width:768px){

.services-banner {
    grid-template-columns: repeat(2, 1fr);
}

}

.services-banner img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

@media (max-width:768px){

.nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 220px;
    background: #0c2d48;
    flex-direction: column;
    display: none;
    padding-top: 80px;
    z-index: 999;
}

.nav-links li {
    padding: 15px 0;
}

.nav-links.active {
    display: flex;
}

.hamburger {
    display: block;
}

}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 12px;
    font-weight: bold;
    color: #0c2d48;
}


.contact input:focus,
.contact textarea:focus,
.contact select:focus {
    border-color: #8AA300;
    outline: none;
    box-shadow: 0 0 0 2px rgba(138,163,0,0.2);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
    display: none;
    background: #e6f7e6;
    color: #2e7d32;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    border: 1px solid #b7e1b7;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.4s ease;
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.contact-form,
.contact-map {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.contact-map iframe,
.map-placeholder {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
}

.contact label {
    display: block;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: #1c2c4c;
}

/* FORM GRID LAYOUT */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

/* Form groups */
.form-group {
    display: flex;
    flex-direction: column;
}

/* Full width fields */
.form-group.full {
    grid-column: span 2;
}

/* Labels */
.contact label {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1c2c4c;
}

/* Inputs & textarea spacing */
.contact input,
.contact textarea,
.contact select {
    margin-top: 0;
}

/* Mobile: single column */
@media (max-width:768px){
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}

.contact-container {
    display: flex;
    gap: 40px;
    padding: 40px 10%;
    align-items: stretch;
}

/* MAKE BOTH SIDES SAME HEIGHT */
.contact-form,
.contact-map {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* MAKE FORM FILL HEIGHT */
.contact-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* PUSH BUTTON TO BOTTOM */
.contact-form button {
    margin-top: auto;
}

header {
    background: #0c2d48;
    padding: 15px 8%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

input[type="file"] {
    margin-bottom: 20px;
}
