* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #fff;
    padding-top: 100px;   
}


/* Container */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
}



.top-right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 0;
    color: #003b5c;
}

.top-right i {
    margin-right: 6px;
    color: #0077a3;
}

/* Header */
.main-header {
    position: fixed;
    top: 40px; /* height of top-bar */
    left: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;   /* reduced height */
}



/* Logo container */
.logo {
    display: flex;
    align-items: center;   /* vertical centering */
}

/* Logo image size & clarity */
.logo img {
    height: 52px;     /* balanced & compact */
    width: auto;
    object-fit: contain;
}

/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #003b5c;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #d42603;
    font-size: large;
    text-decoration: underline;
}

/* Contact Button */
.contact-btn {
    background: linear-gradient(135deg, #004c75, #0077a3);
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    opacity: 0.9;
    background-image: linear-gradient(to right, #ff6e7f 0%, #bfe9ff  51%, #ff6e7f  100%);

}
/* Floating Social Container */
.floating-social {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Social Icon Style */
.floating-social .social {
     width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

/* Individual Colors */
.facebook {
    background: #1877f2;
}

.linkedin {
    background: #0077b5;
}
.social.twitter {
     background: #000000; 
    }

.whatsapp {
    background: #25d366;
}

.instagram {
    background: linear-gradient(
        45deg,
        #f58529,
        #feda77,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}
.social.youtube {
  background-color: #ff0000;
}

/* Hover Effect */
.floating-social .social:hover {
    padding-right: 12px;
    width: 60px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh;
    background: url("../documents/taximg1.png") no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

/* White Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 45%,
        rgba(255, 255, 255, 0.6) 65%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: #1f2d3d;
}
.hero-title-1 {
    font-size: 35px;
    font-weight: bolder;
    font-family: 'OpenSans', 'Arial', sans-serif;
}
.hero-title-2{
    font-size: 35px;
    font-weight: normal;
    font-family: 'OpenSans', 'Arial', sans-serif;
}

.hero h1 {
    font-size: 20;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #FFD700; /* Gold */
    color: #001f3f; /* Dark Navy */
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #E6C300;
}
/* Main Content Sections */
.section {
    padding: 60px 5%;
    text-align: center;
}

.section h2 {
    font-size: 2em;
    color: #001f3f;
    margin-bottom: 40px;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #FFD700;
    margin: 10px auto 0;
}
.section p {
      text-align: justify;        /* fits text cleanly within margins */
  text-justify: inter-word;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 4px solid #003366;
    transition: transform 0.3s;
}
.card a{
    margin-top: 180px;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #003366;
    margin-top: 0;
}
.card p{
    margin-bottom: 10px;
}



/* Footer */
.footer {
    background-color: #001f3f;
    color: #ccc;
    padding: 40px 5%;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px 10px 15px;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #FFD700;
}

.social-media a {
    color: #FFD700;
    font-size: 1.5em;
    margin: 0 10px;
    text-decoration: none;
}
/* Footer CTA */
.footer-cta {
background: #eeeeee;
padding: 20px 0;
}

.cta-flex {
display: flex;
align-items: center;
justify-content: space-between;
}

.footer-cta p {
font-size: 18px;
color: #1f3a52;
font-weight: 600;
}

.cta-btn {
background: #4a90e2;
color: #fff;
padding: 12px 25px;
border-radius: 25px;
text-decoration: none;
font-size: 14px;
}

.cta-btn:hover {
background: #357abd;
}

/* Main Footer */
.footer-main {
background: #2f4357;
padding: 60px 0;
color: #d5e2ee;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

.footer-col h3 {
color: #fff;
margin-bottom: 20px;
font-size: 18px;
}

.footer-col p {
font-size: 14px;
line-height: 1.7;
margin-bottom: 10px;
}
/* Links */
.footer-col ul {
    list-style: none;
    }
    
    .footer-col ul li {
    margin-bottom: 12px;
    }
    
    .footer-col ul li a {
    color: #d5e2ee;
    text-decoration: none;
    font-size: 14px;
    }
    
    .footer-col ul li a:hover {
    color: #4a90e2;
    }
    
    /* Social Icons */
    .social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    }
    
    .social-icons a {
    width: 35px;
    height: 35px;
    background: #3b536a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    }
    
    .social-icons a:hover {
    background: #4a90e2;
    }
    
/* WRAPPER */
.contact-wrapper {
    padding: 80px 8%;
    background: #ffffff;
}

/* HEADER */
.contact-header {
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 15px;
    color: #666;
}

/* CONTENT */
.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 22px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-form textarea {
    height: 160px;
    resize: none;
}

/* BUTTON */
.contact-form button {
    background: #1bb15e;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #169b51;
}

/* IMAGE */
.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-image {
        margin-top: 30px;
    }
}
/* PAGE TITLE SECTION */
.page-title {
    position: relative;
    height: 320px;
    background: url("contact_img2.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 8%;
    margin: top 20px;; /* adjust if header is fixed */
}

/* DARK OVERLAY */
.page-title-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 40, 0.65);
}

/* CONTENT */
.page-title-content {
    position: relative;
    color: #fff;
}

/* GREEN LINE */
.title-line {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: #6dbb45;
    margin-bottom: 15px;
}

/* TITLE */
.page-title-content h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-title {
        height: 240px;
        padding-left: 5%;
    }

    .page-title-content h1 {
        font-size: 32px;
    }
}
    
@media (max-width: 768px) {
    .logo img {
        height: 50px;   /* smaller logo for mobile */
    }
}
   