.navbar-brand img {
    width: 55px;           /* increase size */
    height: 55px;          /* keep equal for circle */
    border-radius: 50%;    /* makes it circular */
    object-fit: cover;     /* prevents stretching */
    border: 2px solid #0a3d62; /* optional border (export-style blue) */
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    overflow: visible;
}


.brand-name {
    color: #1f3c88; /* Blue */
    font-weight: bold;
}
/* Increase size & bold for ALL navbar links */
.navbar-nav .nav-link {
    font-size: 16px;          /* increase size */
    font-weight: 600;         /* bold */
    text-transform: uppercase;
    color: #000;
    padding: 10px 16px;       /* better spacing */
    display: flex;
    align-items: center;
}

/* Dropdown arrow spacing */
.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
}

.dropdown-menu {
    z-index: 2000;
    top: 100%;
}

/* Hover dropdown – reliable */
.navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 3000;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/*responsive */
@media (max-width: 768px) {
  .hero-text {
    text-align: center;
  }
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    color: #0a3d62;
}
/* Enquiry Button – White & Blue Theme */
/* Enquiry Button – force override ALL Bootstrap states */
.navbar .enquiry-btn {
    background-color: #1f3c88;
    color: #ffffff !important;
    border: 2px solid #1f3c88;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 700;
    margin-left: 12px;
    transition: all 0.3s ease;
}

/* Hover, focus, active – remove yellow completely */
.navbar .enquiry-btn:hover,
.navbar .enquiry-btn:focus,
.navbar .enquiry-btn:active,
.navbar .enquiry-btn.active {
    background-color: #ffffff !important;
    color: #1f3c88 !important;
    border-color: #1f3c88 !important;
    box-shadow: none !important;
    outline: none !important;
}



body {
    padding-top: 80px; /* height of navbar */
}
.navbar {
    position: fixed;

}

<!-- Home -->
/* HERO SECTION */
/*
.hero {
    background-image: url("/Images/ship2.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}*/
.hero {
    position: relative;
    height: calc(100vh - 80px);
    overflow: hidden;
}

/* IMAGE */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* Ravir jaisa look */
    object-position: center bottom;
}

/* OVERLAY – ONLY IMAGE PAR */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 600;
}

/* TABLET */
 @media (max-width: 992px) {
     .hero {
         height: 80vh;
     }

     .hero-content h1 {
         font-size: 32px;
     }

     .hero-content p {
         font-size: 16px;
     }
 }

 /* MOBILE */
 @media (max-width: 768px) {
     .hero {
         height: 75vh;
     }

     .hero-img {
         object-position: center;
     }

     .hero-content h1 {
         font-size: 24px;
         line-height: 1.3;
     }

     .hero-content p {
         font-size: 14px;
         margin-bottom: 20px;
     }

     .hero-buttons {
         display: flex;
         flex-direction: column;
         gap: 12px;
     }

     .hero-buttons a {
         width: 180px;
         text-align: center;
     }
 }

 /* SMALL PHONES */
 @media (max-width: 480px) {
     .hero {
         height: 70vh;
     }
 }

/* ABOUT COMPANY SECTION */
/* ABOUT SECTION */
/* ABOUT SECTION */
.about-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.about-section {
    position: relative;
    background: #ffffff;
    z-index: 0;
}

.about-container {
    max-width: 1400px;          /* 🔥 wider container */
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 0 30px;
}

/* IMAGE COLUMN (BIGGER) */
.about-image {
    flex: 1.3;                  /* 🔥 image gets more space */
}

.about-image img {
    width: 100%;
    height: 600px;              /* 🔥 BIG image */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* CONTENT COLUMN */
.about-content {
    flex: 1;                    /* text slightly smaller */
}

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1b3c8b;
    margin-bottom: 22px;
}

.about-content p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

/* BUTTONS */
.about-buttons {
    margin-top: 32px;
}

.btn-outline {
    display: inline-block;
    padding: 13px 34px;
    margin-right: 18px;
    border: 2px solid blue;
    color: blue;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: blue;
    color: #fff;
}
@media (max-width: 992px) {

    .about-section {
        padding: 60px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .about-image,
    .about-content {
        width: 100%;
    }

    .about-image img {
        height: auto;                /* 🔥 remove fixed height */
        max-height: 380px;
    }

    .about-content h2 {
        font-size: 30px;
        text-align: left;
    }

    .about-content p {
        font-size: 15.5px;
        line-height: 1.7;
        word-break: normal;          /* 🔥 prevent word stacking */
        white-space: normal;
    }

    .about-buttons {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .btn-outline {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}



/* OUR MISSION SECTION */
.mission-section {
    background: #ffffff;
    padding: 90px 0;
}

.mission-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

/* TEXT */
.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1b3c8b;
    margin-bottom: 25px;
}

.mission-content p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

/* IMAGE */
.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: 500px;              /* 👈 THIS is key */
    object-fit: cover;          /* fills area properly */
    border-radius: 8px;
}
/* CONTACT BUTTON */
.mission-button {
    margin-top: 35px;
}

.contact-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid blue;
    color: blue;
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: blue;
    color: #ffffff;
}
@media (max-width: 768px) {
    .contact-btn {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 768px) {

    .mission-section {
        padding: 50px 0;
    }

    .mission-wrapper {
        flex-direction: column;      /* ✅ KEY FIX */
        gap: 30px;
        padding: 0 20px;
    }

    .mission-content {
        width: 100%;
    }

    .mission-content h2 {
        font-size: 28px;
        text-align: left;
    }

    .mission-content p {
        font-size: 15.5px;
        line-height: 1.7;
        word-break: normal;          /* ✅ PREVENT WORD BREAK */
        white-space: normal;         /* ✅ NORMAL TEXT FLOW */
    }

    .mission-image {
        width: 100%;
    }

    .mission-image img {
        height: auto;                /* ✅ REMOVE 500px FIXED HEIGHT */
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }
}




/* OUR VISION SECTION */
.vision-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}

.vision-title {
    font-size: 36px;
    font-weight: 700;
    color: #1b3c8b; /* Blue */
    margin-bottom: 25px;
}

.vision-text {
    max-width: 900px;
    margin: auto;
    font-size: 16.5px;
    line-height: 1.9;
    color: #444;
}
@media (max-width: 768px) {
    .vision-title {
        font-size: 28px;
    }

    .vision-text {
        font-size: 15.5px;
    }
}
/* Footer Main */
.footer {
    background-color: #243f8f;
    color: #ffffff;
    padding: 60px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* Columns */
.footer-col {
    min-width: 180px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
}

.footer-col a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #f0c040; /* or your theme color */
}


/* Brand */
.footer-col.brand h2 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

.footer-col.brand span {
    font-size: 14px;
    opacity: 0.8;
}

/* Contact */
.footer-col.contact p,
.footer-col.address p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #e50914;
    color: #ffffff;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
}







/* EXPORTS HERO */
.exports-hero {
    background: linear-gradient(to right, #0b3c5d, #1f6aa5);
    color: #fff;
    padding: 80px 0;
}

.exports-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.exports-hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* EXPORT SECTION */
.exports-section {
    padding: 70px 0;
}

.export-block {
    margin: 50px 0;
}

.export-block h3 {
    color: #1f3c88;
    font-weight: 600;
    margin-bottom: 15px;
}

.export-block ul {
    padding-left: 18px;
}

.export-block ul li {
    margin-bottom: 6px;
    font-size: 15px;
}

/* IMAGE STYLING */
.export-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* TRADE INFO */
.trade-info {
    margin-top: 60px;
}

.trade-info p {
    font-size: 16px;
    margin-bottom: 8px;
}













/* PRODUCT SECTION */
.product-section {
    padding: 80px 0;
    background: #ffffff;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f3c88;
    margin-bottom: 50px;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARD */
.product-card {
    background: #f6f6f6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* TITLE */
.product-card h4 {
    font-size: 22px;
    color: #1f3c88;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.product-card p {
    font-size: 15px;
    color: #c0392b;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
.light-bg {
    background: #f9fafb;
}



/* Imports */
/* ===== IMPORT HERO ===== */
.imports-hero {
    background: linear-gradient(135deg, #0b3c6d, #145da0);
    padding: 80px 20px;
    color: #fff;
}

.imports-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.imports-hero p {
    font-size: 18px;
    max-width: 750px;
    margin: auto;
}

/* ===== IMPORT PRODUCTS ===== */
.import-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.import-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.import-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.import-card h3 {
    color: #0b3c6d;
    font-weight: 700;
    margin-bottom: 15px;
}

.import-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

/* BUTTON */
.import-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid #0b3c6d;
    color: #0b3c6d;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.import-btn:hover {
    background: #0b3c6d;
    color: #fff;
    text-decoration: none;
}




/* CERTIFICATION SECTION */
.certification-section {
    background: #f9fafc;
    padding: 70px 0;
}

.cert-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1f3c88;
    margin-bottom: 40px;
}

/* LIST */
.cert-list {
    max-width: 800px;
    margin: auto;
    list-style: none;
    padding: 0;
}

.cert-list li {
    background: #ffffff;
    padding: 18px 22px;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #444;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.cert-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* BADGE */
.cert-badge {
    background: #1f3c88;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cert-title {
        font-size: 26px;
    }

    .cert-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .cert-badge {
        margin-bottom: 6px;
    }
}




/* OFFICE SECTION */
.office-section {
  padding: 80px 0;
  background: #f9fafc;
}

.office-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* MAP */
.map-box {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* OFFICE DETAILS */
.office-details {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.office-details h2 {
  font-size: 32px;
  color: #1f3c88;
  margin-bottom: 15px;
}

.office-details h4 {
  margin-top: 25px;
  font-size: 18px;
  color: #1f3c88;
}

.office-details p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.office-details a {
  color: #d93025;
  text-decoration: none;
  font-weight: 500;
}

.office-details a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .office-container {
    flex-direction: column;
  }

  .map-box iframe {
    min-height: 300px;
  }

  .office-details h2 {
    font-size: 26px;
  }
}




/* GET IN TOUCH SECTION */
.get-in-touch {
    background: linear-gradient(135deg, #1f3c88, #3f72af);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.get-in-touch-content {
    max-width: 700px;
    margin: auto;
}

.get-in-touch h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.get-in-touch p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* BUTTON */
.get-in-touch-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #1f3c88;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.get-in-touch-btn:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .get-in-touch h2 {
        font-size: 28px;
    }

    .get-in-touch p {
        font-size: 16px;
    }
}




/* ENQUIRY FORM SECTION */
.enquiry-section {
    background: #f5f7fb;
    padding: 80px 20px;
}

.enquiry-container {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.enquiry-container h2 {
    font-size: 32px;
    color: #1f3c88;
    font-weight: 700;
    margin-bottom: 10px;
}

.enquiry-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* FORM */
.enquiry-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: #1f3c88;
}

/* BUTTON */
.enquiry-btn {
    margin-top: 20px;
    padding: 14px 40px;
    background: #1f3c88;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .enquiry-container {
        padding: 40px 20px;
    }

    .enquiry-container h2 {
        font-size: 26px;
    }
}


/* enquiry back button*/
.back-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: #1f3c88;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
}
.back-btn:hover {
    background: #162f6b;
}

