        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Navbar Styles */
        .navbar {
            background: white;
            padding: 5px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.25rem;
            color: #000 !important;
        }

        .logo-home {
            width: 80px;
        }

        .logo-icon {
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 50%;
            position: relative;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            width: 14px;
            height: 14px;
            background: #1a1a2e;
            border-radius: 50%;
        }

        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #16a085 !important;
        }

        .nav-link.active {
            color: #16a085 !important;
        }

        .btn-contact {
            background: #27AE60;
            color: #002753;
            padding: 11px 45px;
            border-radius: 5px;
            border: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .btn-contact:hover {
            background: #ddd;
            border: 2px solid #27AE60;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(22, 160, 132, 0.206);
        }

           .hero-section {
      position: relative;
      height: 600px;
      overflow: hidden;
    }

    .hero-slider {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide.active {
      opacity: 1;
    }

    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 160, 133, 0.3) 100%);
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Hero Content */
    .hero-content {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      z-index: 2;
      color: white;
      width: 100%;
    }

    .hero-content h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease;
    }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease 0.2s backwards;
    }

    /* Search Box */
    .search-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      max-width: 500px;
      animation: fadeInUp 1s ease 0.4s backwards;
    }

    .search-input {
      flex: 1;
      padding: 12px 20px;
      border: none;
      border-radius: 30px;
      outline: none;
      font-size: 1rem;
    }

    .search-btn {
      background-color: #27AE60;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .search-btn:hover {
      background-color: #a261b6;
    }

    /* Slider Dots */
    .slider-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .dot.active {
      background: white;
      width: 30px;
      border-radius: 6px;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero-content h1 {
        font-size: 2.4rem;
      }
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .search-container {
        flex-direction: column;
        align-items: stretch;
      }

      .search-btn {
        width: 100%;
      }
    }

    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 1.6rem;
      }
    }

        .home-abt {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9f5f0 100%);
            position: relative;
            overflow: hidden;
        }

        .shape-abt img {
            position: absolute;
            top: 0px;
            z-index: -9;
            right: -14%;
            width: 47%;
        }

        .home-abt-container {
            position: relative;
            z-index: 1;
        }

        .home-abt-title {
            font-size: 40px;
            font-weight: 600;
            color: #002753;
            margin-bottom: 20px;
        }

        .home-abt-image-wrapper {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
        }

        .home-abt-image-main {
            width: 70%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
        }

        .home-abt-image-overlay {
            position: absolute;
            top: 50%;
            left: 72%;
            transform: translate(-50%, -50%);
            width: 50%;
            height: 310px;
            border-radius: 10px;
            object-fit: cover;
        }

        .home-abt-phone-icon {
            position: absolute;
            bottom: 232px;
            left: -19px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .home-abt-phone-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .home-abt-content {
            padding-left: 30px;
        }

        .home-abt-description {
            font-size: 1rem;
            line-height: 20px;
            color: #4b5563;
            margin-bottom: 11px;
        }

        .home-abt-mission-vision {
            display: flex;
            flex-direction: column;
            gap: 0px;
        }

        .home-abt-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 10px;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .home-abt-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .home-abt-icon-box {
            width: 80px;
            height: 80px;
            background: #00C165;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .home-abt-icon-box svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .home-abt-card-content h3 {
            font-size: 30px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 5px;
        }

        .home-abt-card-content p {
            font-size: 0.95rem;
            color: #6b7280;
            margin: 0;
            line-height: 19px;
        }

        .icons-abt {
            width: 48px;
        }

        .icons-abt-one {
            width: 50px;
            background-color: #104828;
            padding: 5px;
            border-radius: 50px;
        }

        @media (max-width: 991px) {
            .home-abt-content {
                padding-left: 0;
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .home-abt-title {
                font-size: 2rem;
            }

            .home-abt-image-main {
                height: 300px;
            }
        }



        .services-section {
            padding: 60px 20px;
            padding-bottom: 40px;
            background-color: #f8f9fa;
        }

        .section-title {
            font-size: 40px;
            font-weight: 600;
            color: #003366;
            text-align: center;
            margin-bottom: 50px;
        }

        .vehicle-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 270px;
            margin-bottom: 30px;
        }

        .vehicle-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .vehicle-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        .vehicle-card:hover .vehicle-image {
            opacity: 0.3;
        }

        .vehicle-label {
            position: absolute;
            bottom: -2px;
            width: 100%;
            /* left: 15px; */
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 16px 18px;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 4px;
            z-index: 2;
        }

        .vehicle-description {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgb(0 0 0 / 22%);
            color: #002753;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .vehicle-card:hover .vehicle-description {
            opacity: 1;
        }

        .vehicle-description h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #002753;
        }

        .vehicle-description p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .explore-btn {
            background-color: white;
            color: #003366;
            border: 3px solid #003366;
            padding: 12px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 0;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .explore-btn:hover {
            background-color: #003366;
            color: white;
        }

        .btn-container {
            text-align: left;
            margin-top: 20px;
        }

        /* /././/.././././././///./././././3rd/./././././././ */

        .trans-bsns-section {
            background-color: #00254d;
        }

        .trans-bsns-card {
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .trans-bsns-card:hover {
            transform: translateY(-5px);
            border-color: #28a745;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        }

        .trans-bsns-img {
            flex-shrink: 0;
            width: 80px;
            height: 70px;
            object-fit: cover;
            border: 1px solid #000;
        }

        .trans-bsns-section h2 {
            font-size: 40px;
            font-weight: 600;
        }

        .trans-bsns-card a i {
            transition: transform 0.2s ease;
        }

        .trans-bsns-card a:hover i {
            transform: translateX(4px);
        }


        /* /././//.//./.4rth/.//./././. */

        .cnt-hm-f-section {
            background: linear-gradient(to right, rgb(0 57 114), rgb(248 253 255 / 9%)), url(../images/cnt-hm-f.png) center / cover no-repeat;
            min-height: 350px;
            position: relative;
        }

        .cnt-hm-f-btn {
            background-color: #28a745;
            color: #fff;
            border: none;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .cnt-hm-f-btn:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }

        .cnt-hm-f-section h3,
        .cnt-hm-f-section p {
            color: #fff;
        }

        .cnt-hm-f-section p {
            max-width: 600px;
            margin: 0 auto 1rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* /././.././../5th/../.././/./ */

        .why-chs-us-section {
            background-color: #fff;
        }

        .why-chs-us-heading {
            font-size: 40px;
            font-weight: 600;
            color: #002d72;
        }

        .why-chs-us-text {
            color: #333;
            font-size: 1rem;
            line-height: 1.7;
        }

        .why-chs-us-img {
            max-height: 280px;
            object-fit: cover;
        }

        .why-chs-us-icon-box {
            transition: all 0.3s ease;
        }

        .why-chs-us-icon-box:hover {
            transform: translateY(-5px);
        }

        .why-chs-us-icon {
            background-color: #00b058;
            color: #fff;
            font-size: 2rem;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }

        .why-chs-us-icon img {
            width: 55px;
        }


        /* /././././6th sec/././././. */

        .test-sec {
            background: #003366;
            padding: 60px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .test-sec-title {
            color: #ffffff;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 40px;
        }

        .test-carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .test-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            margin: 0 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            min-height: 200px;
        }

        .test-quote {
            color: #333;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .test-author {
            color: #0a3d62;
            font-weight: 600;
            font-size: 0.95rem;
            text-align: right;
            margin-bottom: 15px;
        }

        .test-stars {
            text-align: right;
            font-size: 1.3rem;
        }

        .test-star {
            color: #ffd700;
            margin: 0 2px;
        }

        .test-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .test-nav-btn:hover {
            background: #ffffff;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }

        .test-nav-prev {
            left: -60px;
        }

        .test-nav-next {
            right: -60px;
        }

        .test-nav-arrow {
            width: 0;
            height: 0;
            border-style: solid;
        }

        .test-nav-arrow-left {
            border-width: 8px 12px 8px 0;
            border-color: transparent #0a3d62 transparent transparent;
        }

        .test-nav-arrow-right {
            border-width: 8px 0 8px 12px;
            border-color: transparent transparent transparent #0a3d62;
        }

        @media (max-width: 768px) {
            .test-nav-btn {
                width: 35px;
                height: 35px;
            }

            .test-nav-prev {
                left: -10px;
            }

            .test-nav-next {
                right: -10px;
            }

            .test-card {
                padding: 30px 20px;
                margin: 0 10px;
            }

            .test-quote {
                font-size: 1rem;
            }
        }


        /* /././././. 7th sec/...//././../ */

        .hom-cnt-sec {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .hom-cnt-sec h2 {
            font-size: 40px;
            font-weight: 600;
            color: #002d72;
            margin-bottom: 15px;
        }

        .hom-cnt-sec .subtitle {
            color: #002753;
            font-size: 20px;
            margin-bottom: 30px;
        }

        .hom-cnt-sec .map-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }

        .hom-cnt-sec .map-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hom-cnt-sec .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .hom-cnt-sec .icon-wrapper {
            width: 70px;
            height: 70px;
            background-color: #0d3b66;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 20px;
        }

        .hom-cnt-sec .icon-wrapper i {
            color: #ffffff;
            font-size: 24px;
        }

        .hom-cnt-sec .contact-content h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .hom-cnt-sec .contact-content p {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        .icon-wrapper img {
            width: 38px;
        }

        @media (max-width: 768px) {
            .hom-cnt-sec {
                padding: 40px 0;
            }

            .hom-cnt-sec h2 {
                font-size: 1.5rem;
            }

            .hom-cnt-sec .contact-item {
                margin-bottom: 25px;
            }
        }


        /* //././.././/footer/..//././/. */

        .footer {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            color: #ffffff;
            padding: 60px 0 0px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

        }

        .footer-description {
            color: #9CA0D2;
            line-height: 24px;
            font-size: 17px;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .footer-logo {
            width: 120px;
            height: 120px;
            background-color: #fff;
            border-radius: 50%;

        }

        .footer h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #9CA0D2;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
            display: inline-block;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 8px;
        }

        .footer-links li::before {
            content: "▸";
            color: #9CA0D2;
            margin-right: 10px;
            font-size: 14px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            color: #b8bcc8;
        }

        .footer-contact-icon {
            width: 45px;
            height: 45px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .footer-contact-icon i {
            color: #9CA0D2;
            font-size: 25px;
        }

        .footer-contact-text {
            flex: 1;
            font-size: 17px;
            color: #9CA0D2;
            line-height: 1.6;
            font-weight: 500;
        }

        .footer-contact-text a {
            color: #9CA0D2;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 17px;
        }

        .footer-contact-text a:hover {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }

            .footer h3 {
                font-size: 18px;
                margin-top: 30px;
            }

            .footer-logo {
                width: 100px;
                height: 100px;
            }
        }

        /* /./././/..//./.about us page/./..//././. */

        .about-page-sec {
            position: relative;
            width: 100%;
            height: 570px;
            /* full screen height, you can change to 80vh if preferred */
            background: url("../images/abt-banner.jpg") center center / cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
        }

        /* Overlay Effect */
        .about-page-sec::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 32, 68, 0.7);
            /* dark blue transparent overlay */
            z-index: 1;
        }

        /* Text Content */
        .about-page-sec .about-content {
            position: relative;
            z-index: 2;
            color: #fff;
            padding-left: 8%;
        }

        .about-page-sec h2 {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-page-sec {
                height: 60vh;
                justify-content: center;
                text-align: center;
                padding: 0 20px;
            }

            .about-page-sec .about-content {
                padding-left: 0;
            }

            .about-page-sec h2 {
                font-size: 2rem;
            }
        }



        /* /..//../.abt-2nd sec//...//../. */

        .abt-scnd-sec {
            background-color: #002b5c;
            color: #fff;
            padding: 10px 0;
        }

        .abt-scnd-sec .text-content h3 {
            font-size: 28px;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .abt-scnd-sec .icon-box img {
            background-color: #1ec47e;
            width: 80px;
            border-radius: 10px;
            padding: 8px;
        }

        .abt-scnd-sec .text-box h5 {
            font-weight: 600;
            margin-bottom: 8px;
        }

        .abt-scnd-sec .text-box p {
            font-size: 15px;
            margin: 0;
            color: #dcdcdc;
        }

        .abt-scnd-sec .image-box img {
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            .abt-scnd-sec {
                text-align: center;
            }

            .abt-scnd-sec .mission-box,
            .abt-scnd-sec .vision-box {
                justify-content: center;
            }

            .abt-scnd-sec .icon-box {
                margin-bottom: 10px;
            }
        }


        /* /./..//.//../about third sec/..//../././. */

        .third-abt-sec {
            padding: 60px 0;
            background-color: #fff;
        }

        .third-abt-sec .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.8rem;
            font-weight: 600;
            color: #002b5c;
        }

        .third-abt-sec .card {
            border: 1px solid #dcdcdc;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .third-abt-sec .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .third-abt-sec .card-body {
            padding: 20px;
        }

        .third-abt-sec .card img {
            width: 60px;
            height: auto;
            margin-bottom: 15px;
        }

        .third-abt-sec .card-title {
            font-weight: 600;
            color: #002b5c;
            font-size: 1.1rem;
        }

        .third-abt-sec .card-text {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .third-abt-sec .explore-link {
            color: #00914f;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .third-abt-sec .explore-link:hover {
            color: #006f3a;
        }

        @media (max-width: 767px) {
            .third-abt-sec .card {
                margin-bottom: 20px;
            }
        }

        /* /././././.service page.//./././. */
 .service-page-sec {
            display: flex;
            min-height: 100vh;
        }

        .sidebar {
            background-color: #003366;
            width: 250px;
            padding: 0;
            color: white;
        }

        .sidebar-item {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .sidebar-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .sidebar-item i {
            font-size: 12px;
        }

        .content-area {
            flex: 1;
            padding: 30px;
            background-color: #f8f9fa;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background-color: #fff;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* ensures full image is visible */
        }

        .product-info {
            padding: 15px;
            text-align: center;
        }

        .product-title {
            font-size: 14px;
            color: #333;
            margin-bottom: 15px;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-actions {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .btn-view {
            background-color: #00c853;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-view:hover {
            background-color: #00a844;
        }

        .btn-interested {
            background-color: white;
            color: #00c853;
            border: 1px solid #00c853;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-interested:hover {
            background-color: #00c853;
            color: white;
        }

        @media (max-width: 768px) {
            .service-page-sec {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
            }
        }


        /* /././././conatct page.,.,.,.,.,., */


        .contact-page-sec {
            padding: 30px 0;
        }

        .contact-page-sec h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.8rem;
            font-weight: 600;
            color: #002b5c;
        }

        .contact-info-card {
            background: #1a3a52;
            color: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
            height: 100%;
            min-height: 140px;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 32px;
            margin-right: 20px;
            min-width: 50px;
        }

        .contact-details h5 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }

        .contact-details p {
            margin: 5px 0 0 0;
            font-size: 14px;
            opacity: 0.9;
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .mail-image-section {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .mail-image-section img {
            width: 100%;
            height: 490px;
            object-fit: cover;
        }

        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .form-control {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: #28a745;
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        }

        .btn-send {
            background: #28a745;
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: uppercase;
            transition: background 0.3s;
        }

        .btn-send:hover {
            background: #218838;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        @media (max-width: 768px) {
            .contact-page-sec {
                padding: 30px 0;
            }

            .contact-form-wrapper {
                padding: 25px;
            }
        }