img{
    width:100%;
}
/* Smooth scrolling for the entire page */

html {
  scroll-behavior: smooth;
}

/* Desktop - Default */
#about,
#services,
#gallery,
#contact {
  scroll-margin-top: 103px;
  scroll-padding-top: 103px;
}

/* Tablet and Mobile (768px and below) */
@media (max-width: 768px) {
  #about,
  #services,
  #gallery,
  #contact {
    scroll-margin-top: 88px;
    scroll-padding-top: 88px;
  }
}

h1, h2, h3, h4, h5, h6{
 font-family: 'SF Pro Display', sans-serif;

}
p, a, span, li{
     font-family: 'SF Pro Display', sans-serif;
    color: #333;
}
.container{
    max-width: 1380px !important;
}
/* header starts */
/* --------- TOP HEADER GRADIENT BAR --------- */
.top-header {
    background: linear-gradient(96deg, #0066b1, #919397);
    padding: 12px 0;
    color: #fff;
    font-size: 14px;
}
.top-header a {
    color: #fff;
    margin: 0 !important;
    font-weight: 500;
    text-decoration: none;
}
.top-header a:hover {
    color: #000;
}

.top-header .d-flex {
    align-items: center;
    gap: 10px;
}
/* --------- MAIN NAVBAR --------- */
.main-navbar {
    background: #fff;
    padding: 10px 0;
    width: 100%;
    z-index: 999;
    position: sticky;
    top: 0;
    box-shadow: none;
}

.main-navbar .navbar-brand {
    max-width: 245px; /* Prevent logo from getting too wide on mobile */
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.main-navbar .navbar-brand img {
    width: 250px;
    height: auto;
    object-fit: contain;
    max-width: 100%; /* Ensure image doesn't overflow */
}

/* Scroll effect */
.main-navbar.scrolled-inner {
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.main-navbar.scrolled-inner .navbar-brand img {
    width: 170px !important;
}

.navbar-expand-md .navbar-collapse {
    justify-content: flex-end !important;
}

.navbar-nav .nav-link {
    color: #000;
    padding: 0px 18px !important;
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #0066b1;
}

/* Custom CSS to handle the swap */
.navbar-toggler[aria-expanded="true"] .menu-icon-open {
    display: none !important;
}

.navbar-toggler[aria-expanded="true"] .menu-icon-close {
    display: block !important;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    border: none;
    flex-shrink: 0; /* Prevent toggle button from shrinking */
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #0066b1;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    margin-left: 10px;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #004f8a;
    text-decoration: none;
}

/* Mobile Menu Icon */
.navbar-toggler img {
    width: 28px;
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    .main-navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .main-navbar .navbar-brand {
        max-width: 190px; /* Smaller logo on mobile */
        margin-bottom:0;
    }
    
    .main-navbar .navbar-brand img {
        width: 260px !important; /* Fixed smaller size for mobile */
    }
    
    .main-navbar.scrolled-inner .navbar-brand img {
        width: 130px !important;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        margin-left: 10px;
    }
    
    .navbar-nav {
        padding-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }
    
    .whatsapp-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}

/* Extra small devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .main-navbar .navbar-brand {
        max-width: 120px;
    }
    
    .main-navbar .navbar-brand img {
        width: 120px !important;
    }
    
    .main-navbar.scrolled-inner .navbar-brand img {
        width: 110px !important;
    }
    
    .main-navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .main-navbar .navbar-brand {
        max-width: 100px;
    }
    
    .main-navbar .navbar-brand img {
        width: 100px !important;
    }
}


/* navbar ends */
/* banner starts */
/* banner starts */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 75vh;
}

/* Slides */
.slides {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.slides::before {
  content: "";               
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.246);
  z-index: 1;
  pointer-events: none;
}

.slide {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  height: 140%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slide.active {
  opacity: 1;
}
.overlay-content {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  z-index: 2;
  margin: auto;
  display: block;
  /* Add smooth CSS transition */
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  -webkit-transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  /* Hardware acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
}

.overlay-content h1 {
    font-size: 71px;
    margin-bottom: 0px;
    text-shadow: 1px 3px 3px #000000a4;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
}

.overlay-content p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  width: 100%;
  text-align: center;
  text-shadow: 1px 3px 3px #000000a4;
  margin: auto;
  display: inline;
  max-width: 800px;
}

/* Navigation arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Tablet */
@media (max-width: 1024px) {
  .overlay-content h1 {
    font-size: 60px;
  }
  
  .overlay-content p {
    font-size: 17px;
    padding: 0 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider,
  .slides {
    height: 60vh;
  }
  
  .slide {
    top: -25%;
    bottom: -25%;
    height: 150%;
  }
  
  .overlay-content {
    top: 35%;
  }
  
  .overlay-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .overlay-content p {
    font-size: 16px;
    padding: 0 20px;
    line-height: 1.5;
  }
  
  .nav {
    font-size: 24px;
    padding: 8px 12px;
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-slider,
  .slides {
    height: 50vh;
  }
  
  .slide {
    top: -30%;
    bottom: -30%;
    height: 160%;
  }
  
  .overlay-content h1 {
    font-size: 32px;
  }
  
  .overlay-content p {
    font-size: 14px;
    padding: 0 15px;
  }
  
  .nav {
    font-size: 20px;
    padding: 6px 10px;
  }
  
  .prev { left: 5px; }
  .next { right: 5px; }
}
/* Responsive */

/* Services strip */
.services-strip {
    position: relative;
    margin-top: -60px;
    width: 100%;
    z-index: 10;
}
    .service-col a{
        text-decoration:none;
    }
.service-box {
    padding: 12px;
    text-align: center;
    width: 100%;
    max-width: 200px;
    height: 100%;
    margin: auto;

    transition: all 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-10px);
}

.serv-img {
    background: linear-gradient(96deg, rgba(0, 102, 177, 1) 0%, rgba(145, 147, 151, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 30px 30px;
    width: 80px;
    height: 80px;
    margin: auto;
    border: 2px solid #ffffffe6;
    transition: 0.3s all ease-in-out;
}

.service-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1);
  margin-bottom: 10px;
}

.service-box p {
    font-size: 12px;
    color: #555;
    padding-top: 10px;
    font-weight: 600;
    margin: 0;
}

/* banner ends */

/* about starts */

.about-us-wrapper {
    padding: 140px 0 80px;
}
.about-content-wrap{
  padding-right: 50px;
}
.about-content-wrap h6{
  color: #0066b2;
}
.about-content-wrap h1{
  font-weight: 600;
}
.about-content-wrap h3{
  font-weight: 400;
}
.about-content-wrap p{
  text-align: justify;
  color: #00000099;
}
.mission-wrap h5{
  font-weight: 700;
}
.mission-wrap p{
  background: linear-gradient(96deg,rgba(0, 102, 177, 1) 0%, rgba(145, 147, 151, 1) 100%, rgba(255, 255, 255, 0.17) 52%);
  padding: 20px;
  border-radius: 15px;
  color: #ffffffca;
}
.founder-message {
  background: #f3f3f3;
  padding: 15px;
  border-radius: 20px;
  position: relative;
}
@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.founder-message img {
  position: absolute;
  width: 83%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  top: -50px;
  animation: upDown 2s ease-in-out infinite;
}
.message-box{
  padding-top: 16rem;
}
.message-box h5 {
    text-align: right;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}
 .message-box h6{
  text-align: right;
  color: #626262;
  font-size: 15px;
}
.message-box p{
  color: #757575;
  text-align: justify;
}
.section-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 5px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.category-col {
    margin-bottom: 15px;
} 

.category-box {
    text-align: center;
    height: 100%;
    padding: 15px;
  
    border: 2px solid #ffffff00;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}


.category-box .icon {
    width: 85px;
    margin-bottom: 15px;
}
.category-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}
.category-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Marine Services */
.marine-services {
    padding: 50px 0;
}

.marine-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 0px 6px 3px #00000010;
    text-align: center;
}
.marine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.marine-card img {
    width: 125px;
    margin-bottom: 15px;
}

.marine-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0056b3;
}
.marine-para {
    text-align: center;
    padding-top: 45px;
    color: #333333c2;
}
.visual-gallery {
    padding: 50px 0;
}
.section-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #1a73e8;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.gallery-row.row {
    justify-content: center;
}

.gallery-row a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-row img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.3s ease;
}

.gallery-row img:hover {
    transform: scale(1.05);
}

.contact-section {
    padding: 50px 0;
}
.contact-left{
  text-align: left;
}
.contact-details {
    margin: 25px 0;
    display: flex;
    gap: 31px;
}
.contact-details img{
  width: 60px;
  height: 60px;
}
.phone-info p, .email-info p{
  margin-bottom: 3px;
  font-weight: 700;
}
/* Titles */
.sub-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 5px;
}

.main-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.main-title span {
    color: #111;
}

/* Address */
.address-lines p {
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}
.address-lines span{
    color: #0000006e;
    padding-right: 10px;
}
/* Contact Details */
.contact-details {
    margin: 25px 0;
}

.contact-details {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: nowrap;
}

.phone-info,
.email-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.phone-info img, .email-info img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.phone-info div, .email-info div {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    justify-content: center;
    height: 100%;
    margin: auto;
}

.phone-info p,
.email-info p {
  margin: 0;
  line-height: 1.4;
}

.phone-info a,
.email-info a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  white-space: nowrap; 
  font-size: 17px;
}
.msg-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    max-width: 450px;
}

/* Form */
.contact-form {
  width: 100%;
}

.input-box {
  position: relative;
  margin-bottom: 10px;
  width:100%;
}

.input-box i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px 12px 12px 38px; /* space for icon */
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.row-2 {
  display: flex;
  gap: 10px;
}

.textarea-box i {
  top: 16px;
  transform: none;
}

textarea {
  resize: none;
  height: 120px;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #0f6fc6;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.map-img {
    width: 100%;
    border-radius: 4px;
    height: auto;
    object-fit: contain;
}

.qr-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.qr-item {
    text-align: center;
    width: 31%;
}

.qr-item img {
    width: 100%;
    max-width: 110px;
}

/* CTA Bar */
.footer-cta {
    background: #0f6fc6;
    padding: 15px 0;
    color: #fff;
    margin-bottom: 7px;
}
.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-flex p{
    color: #fff;
    margin-bottom: 0;
    font-weight: 600;
}
.cta-btn {
    background: #fff;
    padding: 10px 25px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
    text-decoration: none;
}
.cta-btn  i{
    color: #0059a6;
}
/* Footer */
.site-footer {
    background: #0059a6;
    color: #fff;
    padding: 40px 0 0 0;
    position: relative;
}
.footer-links a.nav-link {
    padding: 0;
    margin-bottom: 10px;
}
.site-footer p, .site-footer a {
    color: #e4edf8;
    text-align: justify;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400 !important;
}
.site-footer a:hover {
    color: #ffffff !important;
}

/* About */
.footer-about {
    padding-right: 20px;
}

.star-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.star-icon img{
    height: 100px;
    width: 100px;
    object-fit: cover;
}
/* Links */
.footer-links h3,
.footer-social h3,
.footer-reach h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}


.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  position: relative;
  padding-left: 18px !important;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: bold;
}


/* Social */
.footer-social a {
    display: block;
    margin-bottom: 8px;
    color: #cce0f5;
    text-decoration: none;
    font-size: 14px;
}

/* Reach Us */
.footer-reach p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-reach-phones {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.footer-reach-link {
    margin-bottom: 20px;
}

.footer-reach-link a {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}

.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 55px;
    background: #fff;
    color: #0059a5 !important;
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 3px;
    text-decoration: none;
}

a.back-to-top:hover {
    color: #0059a6 !important;
}

/* Bottom Bar */
.footer-bottom {
    background: #929496;
    text-align: center;
    padding: 8px 0;
    color: #444;
    font-size: 13px;
}

.footer-bottom p, .footer-bottom span {
    color: #ffffffd4;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom:0;
}

@media only screen and (min-width: 300px) and (max-width: 576.5px) {

    .container {
        max-width: unset !important;
        padding: 0 6% !important;
    }
    p, a, span, li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    .top-header a {
        font-size:10px;
    }

    /* header section start */

    .main-navbar .navbar-brand img {
        width: fit-content;
        height: 60px;
    }

    /* header section ends */

    /* banner section start */

    .hero-slider {
        height: 500px;
    }
    .slides {
        position: relative;
        height: 500px;
    }

    .overlay-content h1 {
        font-size: 36px;
        margin-bottom: 5px;
    }
    .overlay-content p {
        font-size: 14px;
        width: 100%;
    }
    .nav {
        display: none !important;
        font-size: 18px;
        padding: 5px 10px;
    }
    .next {
        right: 20px;
    }
    .prev {
        left: 10px;
    }

    /* banner section ends */

    /* service section start */

    .services-strip {
        padding: 50px 0;
        margin: 0 !important;
        position: unset !important;
    }
    .service-col {
        margin-bottom: 20px;
    }

    .serv-img {
    width: 60px;
    height: 60px;
    }
    .service-box img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    }

    /* service section ends */

    /* about us section start */

    .about-us-wrapper {
        padding: 50px 0;
    }
    .about-content-wrap h6 {
        font-size: 12px;
    }
    .about-content-wrap h1 {
        font-size: 30px;
        line-height: 1.3;
    }
    .about-content-wrap h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    .about-content-wrap {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .mission-wrap h5 {
        font-size: 18px;
    }
    .founder-message img {
        width: 90%;
        position: unset !important;
        margin-top: -50px;
    }
    .message-box {
        padding-top: 30px;
    }
    .message-box h5 {
        font-size: 16px;
    }
    .message-box h6 {
        font-size: 12px;
    }

    /* about us section ends */

    /* working section start */

    .working-sector {
        padding: 50px 0;
    }
    .section-subtitle {
        font-size: 12px;
    }
    .section-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 40px;
    }
    .category-col, .services-col {
        margin-bottom: 20px;
    }
    .category-box {
        text-align: center;
        padding: 15px;
        box-shadow: 0 4px 6px #dedede;
        border-radius: 15px;
    }
    .category-box h3 {
        font-size: 16px;
    }
    .category-box p {
        margin: 0 !important;
    }
    .marine-services .row {
        justify-content: center;
    }
    .marine-card img {
        width: 80px;
        margin-bottom: 15px;
    }
    .marine-card {
        box-shadow: 0px 1px 6px 3px #00000026;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    /* working section ends */

    /* gallery section start */

    .gallery-row img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: 0.3s ease;
    }
    .main-title, .main-title span {
        font-size: 24px !important;
    }

    /* gallery section ends */

    /* contact us section start */

    .cta-flex {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    .contact-details {
        margin: 20px 0;
        display: flex;
        gap: 0px;
        flex-direction: column;
    }
    .contact-details img {
        width: 45px;
        height: 40px;
        object-fit: contain;
    }
    .footer-links, .footer-social, .footer-about {
        margin-bottom: 20px;
    }

    /* contact us section ends */

}

@media only screen and (min-width: 577px) and (max-width: 767.5px) {

    .container {
        max-width: unset !important;
        padding: 0 6% !important;
    }
    p, a, span, li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* header section start */

    .main-navbar .navbar-brand img {
        width: fit-content;
        height: 65px;
    }

    /* header section ends */

    /* banner section start */

    .hero-slider {
        height: 500px;
    }
    .slides {
        position: relative;
        height: 500px;
    }
        .overlay-content {
        top: 50%;
        left: 0;
        width: 100%;
        right: 0;
        margin: auto;
        text-align: center;
    }
    .overlay-content h1 {
        font-size: 36px;
        margin-bottom: 5px;
    }
    .overlay-content p {
        font-size: 14px;
        width: 100%;
    }
    .nav {
        font-size: 18px;
        padding: 5px 10px;
    }
    .next {
        right: 15px;
    }
    .prev {
        left: 15px;
    }

    /* banner section ends */

    /* service section start */

    .services-strip {
        padding: 50px 0;
        margin: 0 !important;
        position: unset !important;
    }
    .service-col {
        margin-bottom: 20px;
    }

    /* service section ends */

    /* about us section start */

    .about-us-wrapper {
        padding: 50px 0;
    }
    .about-content-wrap h6 {
        font-size: 12px;
    }
    .about-content-wrap h1 {
        font-size: 30px;
        line-height: 1.3;
    }
    .about-content-wrap h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    .about-content-wrap {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .mission-wrap h5 {
        font-size: 18px;
    }
    .founder-message {
        margin-top: 60px;
        position: relative;
    }
    .founder-message img {
        width: 80%;
        position: unset !important;
        margin-top: -80px;
    }
    .message-box {
        padding-top: 30px;
    }
    .message-box h5 {
        font-size: 16px;
    }
    .message-box h6 {
        font-size: 12px;
    }

    /* about us section ends */

    /* working section start */

    .working-sector {
        padding: 50px 0;
    }
    .section-subtitle {
        font-size: 12px;
    }
    .section-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 40px;
    }
    .category-col, .services-col {
        margin-bottom: 20px;
    }
    .category-box {
        text-align: center;
        padding: 15px;
        box-shadow: 0 4px 6px #dedede;
        border-radius: 15px;
    }
    .category-box h3 {
        font-size: 16px;
    }
    .category-box p {
        margin: 0 !important;
    }
    .marine-services .row {
        justify-content: center;
    }
    .marine-card img {
        width: 80px;
        margin-bottom: 15px;
    }
    .marine-card {
        box-shadow: 0px 1px 6px 3px #00000026;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    /* working section ends */

    /* gallery section start */

    .gallery-row img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: 0.3s ease;
    }
    .main-title, .main-title span {
        font-size: 24px !important;
    }

    /* gallery section ends */

    /* contact us section start */

    .contact-details {
        margin: 20px 0;
        display: flex;
        gap: 30px;
    }
    .contact-details img {
        width: 45px;
        height: 40px;
        object-fit: contain;
    }
    .footer-links, .footer-social, .footer-about {
        margin-bottom: 20px;
    }

    /* contact us section ends */

}

@media only screen and (min-width: 768px) and (max-width: 991.5px) {

    .container {
        max-width: unset !important;
        padding: 0 6% !important;
    }
    p, a, span, li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* header section start */

    .main-navbar .navbar-brand img {
        width: fit-content;
        height: 30px;
    }

    /* header section ends */

    /* banner section start */

    .hero-slider {
        height: 500px;
    }
    .slides {
        position: relative;
        height: 500px;
    }
    .overlay-content {
        top: 50%;
        left: 50%;
        width: 80%;
        text-align: center;
        transform: translate(-50%, -50%);
    }
    .overlay-content h1 {
        font-size: 48px;
        margin-bottom: 5px;
    }
    .overlay-content p {
        font-size: 14px;
        width: 100%;
    }
    .nav {
        font-size: 18px;
        padding: 5px 10px;
    }
    .next {
        right: 15px;
    }
    .prev {
        left: 15px;
    }

    /* banner section ends */

    /* service section start */

    .service-col {
        margin-bottom: 20px;
    }

    /* service section ends */

    /* about us section start */

    .about-us-wrapper {
        padding: 70px 0 50px;
    }
    .about-content-wrap h6 {
        font-size: 12px;
    }
    .about-content-wrap h1 {
        font-size: 30px;
        line-height: 1.3;
    }
    .about-content-wrap h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    .about-content-wrap {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .mission-wrap h5 {
        font-size: 18px;
    }
    .founder-message img {
        width: 90%;
    }
    .message-box {
        padding-top: 150px;
    }
    .message-box h5 {
        font-size: 16px;
    }
    .message-box h6 {
        font-size: 12px;
    }

    /* about us section ends */

    /* working section start */

    .working-sector {
        padding: 50px 0;
    }
    .section-subtitle {
        font-size: 12px;
    }
    .section-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 40px;
    }
    .category-col, .services-col {
        margin-bottom: 20px;
    }
    .category-box {
        text-align: center;
        padding: 15px;
        box-shadow: 0 4px 6px #dedede;
        border-radius: 15px;
    }
    .category-box h3 {
        font-size: 16px;
    }
    .category-box p {
        margin: 0 !important;
    }
    .marine-services .row {
        justify-content: center;
    }
    .marine-card img {
        width: 80px;
        margin-bottom: 15px;
    }
    .marine-card {
        box-shadow: 0px 1px 6px 3px #00000026;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    /* working section ends */

    /* gallery section start */

    .gallery-row img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: 0.3s ease;
    }
    .main-title, .main-title span {
        font-size: 24px !important;
    }

    /* gallery section ends */

    /* contact us section start */

    .contact-details {
        margin: 20px 0;
        display: flex;
        gap: 0px;
        flex-direction: column;
    }
    .contact-details img {
        width: 45px;
        height: 40px;
        object-fit: contain;
    }
    .footer-links, .footer-social, .footer-about {
        margin-bottom: 20px;
    }

    /* contact us section ends */

}

@media only screen and (min-width: 992px) and (max-width: 1200.5px) {

    .container {
        max-width: unset !important;
        padding: 0 6% !important;
    }
    p, a {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* header section start */

    .main-navbar .navbar-brand img {
        width: fit-content;
        height: 30px;
    }
    .navbar-nav .nav-link {
        padding: 0px 15px !important;
        font-size: 14px;
    }

    /* header section ends */

    /* banner section start */

    .hero-slider {
        height: 500px;
    }
    .slides {
        position: relative;
        height: 500px;
    }
    .overlay-content {
        top: 50%;
        left: 0;
        right:0;
        margin:auto;
        width: 100%;
        text-align: center;
   
    }
    .overlay-content h1 {
        font-size: 52px;
        margin-bottom: 5px;
    }
    .overlay-content p {
        font-size: 16px;
        width: 100%;
    }
    .nav {
        font-size: 20px;
        padding: 5px 10px;
    }
    .next {
        right: 15px;
    }
    .prev {
        left: 15px;
    }

    /* banner section ends */

    /* service section start */

    .service-box {
        padding: 5px;
    }
    .service-col {
        margin-bottom: 20px;
    }

    /* service section ends */

    /* about us section start */

    .about-us-wrapper {
        padding: 80px 0 50px;
    }
    .about-content-wrap h6 {
        font-size: 14px;
    }
    .about-content-wrap h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    .about-content-wrap h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    .about-content-wrap {
        padding-right: 0;
        margin-bottom: 60px;
    }
    .mission-wrap h5 {
        font-size: 20px;
    }
    .founder-message img {
        width: 90%;
    }
    .message-box {
        padding-top: 220px;
    }
    .message-box h5 {
        font-size: 18px;
    }
    .message-box h6 {
        font-size: 14px;
    }

    /* about us section ends */

    /* working section start */

    .working-sector {
        padding: 50px 0;
    }
    .section-subtitle {
        font-size: 14px;
    }
    .section-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 40px;
    }
    .category-col, .services-col {
        margin-bottom: 20px;
    }
    .category-box {
        text-align: center;
        padding: 15px;
        box-shadow: 0 4px 6px #dedede;
        border-radius: 15px;
    }
    .category-box h3 {
        font-size: 18px;
    }
    .category-box p {
        margin: 0 !important;
    }
    .marine-services .row {
        justify-content: center;
    }
    .marine-card img {
        width: 80px;
        margin-bottom: 15px;
    }
    .marine-card {
        box-shadow: 0px 1px 6px 3px #00000026;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    /* working section ends */

    /* gallery section start */

    .gallery-row img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: 0.3s ease;
    }
    .main-title, .main-title span {
        font-size: 24px !important;
    }

    /* gallery section ends */

    /* contact us section start */

    .contact-details {
        margin: 20px 0;
        display: flex;
        gap: 0px;
        flex-direction: column;
    }
    .contact-details img {
        width: 45px;
        height: 40px;
        object-fit: contain;
    }
    .footer-links, .footer-social, .footer-about {
        margin-bottom: 20px;
    }

    /* contact us section ends */

}


.contact-right iframe{
    width:100%;
}
