* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif !important;
}

.container {
    width: 100%;
    max-width: 1366px !important;
    margin: auto;
}

body {
    background: #f8f9fc;
}

.web-main {
    width: 100%;
    max-width: 1600px;
    margin: auto;
}

/* navbar start */

.navbar {
    width: 100%;
    background: #fff;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 28px;
    height: 18px;
    position: relative;
}

.logo-mark::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    background: #2bb3e6;
    transform: skew(-35deg);
    top: 0;
    left: 0;
}

.logo-mark::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    background: #F4B400;
    transform: skew(-35deg);
    bottom: 0;
    left: 0;
}


.logo-text h2{
    font-size: 26px;
    color: #2bb3e6;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.logo-text span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #7d8ca3;
    display: block;
    margin-top: 2px;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    text-decoration: none;
    color: #2bb3e6;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #2bb3e6;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #2bb3e6;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}

/* Quote Button */
.quote-btn {
    background: #2bb3e6;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #143d8f;
}

.quote-btn span {
    font-size: 16px;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle div {
    width: 28px;
    height: 3px;
    background: #2bb3e6;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        gap: 25px;
        transition: 0.4s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .quote-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .logo-text h2 {
        font-size: 22px;
    }

    .logo-text span {
        font-size: 10px;
    }
}

/* navbar end */


/* HEADER SLIDER */
.header-slider {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, #ffffff, #f5f8ff);
    padding: 40px 5%;
}

.slider {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    animation: fade 1s ease-in-out;
}

.slide.active {
    display: block;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 80vh;
}

/* TEXT */
.text-content {
    flex: 1;
    max-width: 500px;
}

.text-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #2bb3e6;
    line-height: 1.2;
}

.text-content h1 span {
    color: #2bb3e6;
}

.text-content p {
    margin: 20px 0;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #2bb3e6;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #143d8f;
}

/* IMAGE */
.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    width: 100%;
    max-width: 750px;
    border-radius: 12px;
    object-fit: cover;
}

/* DOTS */
.slider-buttons {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 14px;
    width: 14px;
    margin: 0 6px;
    background: #cbd5e1;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #2bb3e6;
}

/* ANIMATION */
@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .text-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .text-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-slider {
        padding: 30px 20px;
    }

    .text-content h1 {
        font-size: 2.3rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 1.8rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

/* -------------------------------- header end  */
.about {
    padding: 80px 5%;
    background: #f8f9fc;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* LEFT */
.about-subtitle {
    color: #2bb3e6;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.about-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 35px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-left h2 {
    font-size: 3rem;
    color: #2bb3e6;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.about-left h3 {
    font-size: 2rem;
    color: #2bb3e6;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #666;
}

/* RIGHT */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-box {
    border: 2px solid #2bb3e6;
    padding: 35px;
    border-radius: 12px;
    background: #fff;
    transition: 0.3s ease;
}

.about-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-box h4 {
    font-size: 2rem;
    color: #2bb3e6;
    margin-bottom: 18px;
    font-weight: 800;
}

.about-box p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.9;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .about-left h2 {
        font-size: 2.5rem;
    }

    .about-left h3 {
        font-size: 1.7rem;
    }

    .about-box h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-left {
        text-align: center;
    }

    .about-left h2 {
        font-size: 2.3rem;
    }

    .about-left h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .about-left h2 {
        font-size: 2rem;
    }

    .about-left h3 {
        font-size: 1.3rem;
    }

    .about-left p,
    .about-box p {
        font-size: 1rem;
    }

    .about-box {
        padding: 25px;
    }

    .about-box h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-left h2 {
        font-size: 1.7rem;
    }

    .about-left h3 {
        font-size: 1.1rem;
    }

    .about-subtitle {
        font-size: 12px;
    }

    .about-box h4 {
        font-size: 1.1rem;
    }
}


/* -------------------- */
.features-container {
    width: 90%;
    max-width: 1366px;
    margin: auto;
}

.features {
    padding: 60px 0;
}

.features-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left */
.features-text {
    flex: 1;
}

.subtitle {
    color: #00a8cc;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.features-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item .icon {
    font-size: 30px;
    color: #ff3b3b;
}

.feature-item h4 {
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Right */
.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .features-wrapper {
        flex-direction: column;
    }

    .features-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .features-text h2 {
        font-size: 26px;
    }

    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-item .icon {
        margin-bottom: 5px;
    }
}


.container {
    width: 100%;
    margin: auto;
}

.va-section {
    background: #f5f5f5;
    padding: 70px 0;
    text-align: center;
}

.va-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1f2937;
}

/* Grid Layout */
.va-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Cards */
.va-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #3bb3d9;
    transition: 0.3s ease;
}

.va-card h3 {
    color: #3bb3d9;
    margin-bottom: 15px;
    font-size: 18px;
}

.va-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Hover effect */
.va-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .va-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .va-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .va-grid {
        grid-template-columns: 1fr;
    }

    .va-title {
        font-size: 24px;
    }

    .va-card {
        padding: 25px 20px;
    }
}


/* footer start */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    position: relative;
    padding-top: 100px;
}

/* 🌊 Wave Effect */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #3bb3d9, #1e3a5f);
    border-bottom-left-radius: 60% 100%;
    border-bottom-right-radius: 60% 100%;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1600px;
    margin: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

/* Columns */
.footer-col h4 {
    color: #3bb3d9;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #3bb3d9;
}

/* Logo */
.footer-logo {
    color: #3bb3d9;
    letter-spacing: 3px;
}

.tagline {
    margin: 10px 0;
}

.line {
    width: 60px;
    height: 2px;
    background: #3bb3d9;
    margin: 10px 0;
}

.copy {
    margin-top: 10px;
}

/* Social */
.follow {
    margin-top: 20px;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.socials a {
    width: 35px;
    height: 35px;
    background: #3bb3d9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.socials a:hover {
    background: #0284c7;
}

/* 📱 Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .line {
        margin: 10px auto;
    }
}

/* footer end */


/* facts section start */

.facts {
    padding: 80px 5%;
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

.facts-container {
    max-width: 1600px;
    margin: auto;
}

.facts-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

/* LEFT */
.facts-text {
    flex: 1;
}

.facts-subtitle {
    color: #00a8cc;
    font-weight: bold;
    margin-bottom: 10px;
}

.facts-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.facts-description {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* CONTACT */
.facts-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.facts-contact-icon {
    background: #ff3b3b;
    color: #fff;
    padding: 15px;
    font-size: 20px;
}

.facts-phone {
    color: #ff3b3b;
    font-size: 24px;
}

/* RIGHT */
.facts-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.facts-card {
    padding: 30px;
    color: white;
    border-radius: 5px;
}

.facts-card h3 {
    font-size: 32px;
    margin: 10px 0;
}

.facts-card p {
    font-size: 16px;
}

.facts-icon {
    font-size: 28px;
}

/* COLORS */
.facts-red {
    background: #ff3b3b;
}

.facts-blue {
    background: #4fb0c6;
}

.facts-green {
    background: #1e7f4f;
    grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .facts-wrapper {
        flex-direction: column;
    }

    .facts-title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .facts-cards {
        grid-template-columns: 1fr;
    }

    .facts-green {
        grid-column: span 1;
    }
}

/* facts section end */


/* process section start */

/* SECTION */
.process {
    background: linear-gradient(135deg, #071c2c, #0b2f44);
    padding: 80px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.process-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.process-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 60px;
    line-height: 1.4;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* ITEM */
.process-item {
    position: relative;
}

.process-item h3 {
    font-size: 32px;
    margin: 10px 0;
}

.process-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-item p {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.6;
}

/* DOT */
.dot {
    width: 10px;
    height: 10px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 0 10px #fff;
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-title {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-title {
        font-size: 22px;
    }

    .process-item h3 {
        font-size: 26px;
    }
}

/* process section end */


/* dispatch section start */

/* MAIN SECTION */
.dispatch {
    background: linear-gradient(135deg, #071c2c, #0b2f44);
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.dispatch-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGE BOX */
.dispatch-image-box {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #1aa3d8;
    transition: 0.4s;
}

/* IMAGE */
.dispatch-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.dispatch-image-box:hover .dispatch-image {
    transform: scale(1.08);
}

/* BADGE */
.dispatch-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #4fb3d9;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.dispatch-content {
    flex: 1;
    color: #fff;
}

/* SUBTITLE */
.dispatch-subtitle {
    color: #4fb3d9;
    font-weight: bold;
    font-size: 14px;
}

/* TITLE */
.dispatch-title {
    font-size: 36px;
    margin: 15px 0;
    line-height: 1.3;
}

.dispatch-title span {
    display: block;
}

/* TEXT */
.dispatch-text {
    color: #b0c4d4;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTON */
.dispatch-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(90deg, #4fb3d9, #f5a97f);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

/* BUTTON HOVER */
.dispatch-btn:hover {
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .dispatch-container {
        flex-direction: column;
        text-align: center;
    }

    .dispatch-badge {
        right: 10px;
        top: 10px;
        width: 90px;
        height: 90px;
        font-size: 10px;
    }

    .dispatch-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .dispatch {
        padding: 40px 15px;
    }

    .dispatch-title {
        font-size: 24px;
    }

    .dispatch-text {
        font-size: 14px;
    }
}

/* dispatch section end */

/* dispatch services section start */


/* SECTION */
.dispatch-services {
    background: linear-gradient(135deg, #071c2c, #0b2f44);
    padding: 60px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.dispatch-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.dispatch-top {
    text-align: center;
    color: #4fb3d9;
    font-size: 16px;
    margin-bottom: -50px;
    width: 100%;
    font-weight: bold;
}

.dispatch-heading {
    text-align: center;
    font-size: 32px;
    /* margin-bottom: 40px; */
    width: 100%;
}

/* GRID */
.dispatch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.dispatch-card {
    position: relative;
    border: 1px solid #1aa3d8;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
}

/* IMAGE */
.dispatch-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s;
}

/* OVERLAY */
.dispatch-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.4s;
}

/* CONTENT */
.dispatch-card-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 2;
}

.dispatch-card h3 {
    margin: 5px 0 15px;
}

/* TAG */
.dispatch-tag {
    font-size: 16px;
    color: #4fb3d9;
    font-weight: bold;
}

/* INFO */
.dispatch-info p {
    font-size: 17px;
    margin: 2px 0;
    color: #ddd;
}

/* HOVER EFFECT */
.dispatch-card:hover .dispatch-card-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.dispatch-card:hover .dispatch-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .dispatch-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 576px) {
    .dispatch-grid {
        grid-template-columns: 1fr;
    }

    .dispatch-heading {
        font-size: 24px;
    }

    .dispatch-card-content {
        left: 0;
        right: 0;
    }
}

/* dispatch services section end */
/* contact us start */

    /* Section */
.contact {
  padding: 60px 10%;
}

.contact-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* Left Side */
.contact-info {
  flex: 1;
  animation: slideLeft 1s ease;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.contact-info div {
  margin-bottom: 10px;
}

/* Right Side Form */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  animation: slideRight 1s ease;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

/* Animations */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media(max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* contact us end */