/*===================
*   1.Pre-Loader    *
*   2.Helper        *
*   3.Home          *
*   4.About         *    
*   5.Services      *
*   6.Funfacts      *
*   7.Work          *
*   8.Testimonial   *
*   9.Team          *
*   10.Blog         *
*   11.Pricing      *
*   12.Contact Us   *
*   13.Footer       *
*   14.Responsive   *
*===================*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
body {
    font-family: 'Roboto', sans-serif;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
}


/*
p {
    font-size: 14px;
}
*/

.btn,
.btn:focus,
button,
button:focus {
    outline: none !important;
}

a {
    font-size: 14px;
}

a,
button {
    text-decoration: none !important;
    outline: none !important;
}

p {
    font-size: 20px;
    line-height: 1.8;
}


/*====================
   1. Pre Loader
===================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999999;
}

#status {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
}

.spinner {
    margin: 0 auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    border-top: 5px solid rgba(102, 122, 221, 0.2);
    border-right: 5px solid rgba(102, 122, 221, 0.2);
    border-bottom: 5px solid rgba(102, 122, 221, 0.2);
    border-left: 5px solid #667add;
}

.spinner,
.spinner:after {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*======================
    2.Helper
========================*/

.section {
    
    padding-top: 80px;
    position: relative;
    background-color: #fff;
}

.title-subtitle {
    font-size: 20px;
    max-width: 1100px;
    line-height: 1.8;
    margin: 0 auto;
}

.text-muted {
    color: #000008 !important;
}

.font-15 {
    font-size: 15px;
}

.bg-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.vertical-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: row;
    -webkit-flex-direction: row;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.img-shadow {
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1)!important;
    border: .0625rem solid rgba(0, 0, 0, .08);
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
    letter-spacing: 0.03em;
    font-weight: 500;
    text-transform: capitalize;
}

.btn-rounded {
    border-radius: 30px;
}

.btn-white {
    background-color: #fff !important;
    border: 2px solid #fff !important;
    transition: all 0.4s;
    color: #000 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.focus,
.btn-white:active,
.btn-white:focus,
.btn-white:hover,
.open > .dropdown-toggle.btn-white {
    background-color: #f3f3f3 !important;
    border: 2px solid #f3f3f3 !important;
    box-shadow: none !important;
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid #fff !important;
    transition: all 0.4s;
    color: #fff;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active,
.btn-outline-custom.active,
.btn-outline-custom.focus,
.btn-outline-custom:active,
.btn-outline-custom:focus,
.btn-outline-custom:hover,
.open > .dropdown-toggle.btn-outline-custom {
    background-color: #fff !important;
    border: 2px solid #fff !important;
    box-shadow: none !important;
    color: #000;
}


/*==========================
    3.Home
============================*/

.bg-home {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 100vh;
  }
  
  .carousel-item {
    background-color: #000; /* Prevent white flash */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    pointer-events: none;
  }
  
  .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .carousel-fade .carousel-item.active,
  .carousel-fade .carousel-item-next.carousel-item-start,
  .carousel-fade .carousel-item-prev.carousel-item-end {
    pointer-events: auto;
    opacity: 1;
    position: relative;
    z-index: 1;
  }
  
  .bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
  }
  
  .home-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 2;
    position: relative;
    text-align: center;
    padding: 0 15px;
  }
  
  .home-title {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
  }
  
  .home-sub-title {
    color: #fff;
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto;
  }
  
  .carousel-indicators [data-bs-target] {
    background-color: #fff;
  }
  
  .watch-video a {
    color: #fff;
    font-size: 28px;
    display: inline-block;
    margin-top: 15px;
  }






/*==========================
    4. About
============================*/



.about-section {
    width: 100%;
    padding: 80px 10%;
    background: #f4f4f4; /* Light grey for a clean and professional look */
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-box {
    max-width: 1100px;
    background: #fff; /* White background for contrast */
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for a modern touch */
    text-align: center;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333; /* Dark grey for contrast */
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    text-align: justify;
    color: #555; /* Slightly dark grey for readability */
}

.about-text::first-letter {
    font-size: 24px;
    font-weight: bold;
    color: #007BFF; /* Primary color for emphasis */
}

@media (max-width: 768px) {
    .about-box {
        padding: 30px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 16px;
    }
}





/*==========================
    5. Service
============================*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}
.services-container {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}
.services-header {
    margin-bottom: 40px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.service-box {
    background: linear-gradient(135deg, #003566, #0077b6);
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.service-icon {
    font-size: 50px;
    margin-bottom: 15px;
}
.service-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}
.service-description {
    font-size: 16px;
}
.cta-btn {
    background-color: #0077b6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}
.cta-btn:hover {
    background-color: #005f8a;
}

.modal-backdrop{
    z-index: 10 !important;
}

.modal{
    background: none!important;
    box-shadow: none !important;
    border:none !important;
    height: fit-content !important;
}


.modal-body {
    text-align: center;
}

.modal-icon {
    width: 80px; /* Adjust as needed */
    height: auto;
    margin-bottom: 4px;
}


/*============================
    6.Funfacts
==============================*/

.funfact-border {
    background-color: #fff;
    height: 2px;
    width: 50px;
}

.digit-counter> h1 {
    font-weight: 400;
}

.bg-desc {
    background-image: url(../images/TechOmada_bg_image.webp);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    position: relative;
}

 /* Vision & Mission Styling */
 .vision-mission-box {
    
    color: white;
    padding: 30px;
    margin: 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}
.vision-mission-box img {
    height: 180px; /* Adjust size as needed */
    margin-bottom: 15px;
}

/* Title Styling */
.vision-mission-box .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Hover Effect */
.vision-mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Fade-in Animation */
.animate {
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-mission-box {
        margin-bottom: 20px;
    }
}


/*===============================
    7.Product
=================================*/

.products-container {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

.products-header {
    margin-bottom: 40px;
}

/* Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 20px;
    padding: 20px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on smaller screens */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 Column on mobile */
    }
}

/* Product Box */
.product-box {
    background: linear-gradient(135deg, #020e19, #0a334a);
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 350px;
    margin: auto;
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Product Image */
.product-image {
    width: 100%;
    height: 150px; /* Fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    background: white; /* Adds contrast */
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the image fits without stretching */
}

/* Product Text */
.product-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-description {
    font-size: 16px;
}

/* Button */
.product-btn {
    background-color: #0077b6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.product-btn:hover {
    background-color: #005f8a;
}

/* Product Image */
.product-image {
    width: 100%;
    height: 140px; /* Fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    background: white; /* Adds contrast */
}

.product-image img {
    width: 100%;
    height: 162%;
    object-fit: cover; /* Ensures the image fills the box completely */
}


/*===============================
    7.Work
=================================*/

.portfolio {
    overflow: hidden
}

.filter-list li a {
    padding: 6px 12px;
    cursor: pointer;
    display: block;
    border-bottom: 1px solid transparent;
    /* border-radius: 3px; */
}

.filter-list a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.5s;
}

.item-img {
    position: relative;
    transition: transform .2s linear, box-shadow .2s linear;
    top: 0!important;
}

.item-img:hover {
    transform: translateY(-4px)!important;
    -webkit-transform: translateY(-4px)!important;
}

.item-img img,
.item-img:hover {
    border-radius: 5px;
}

.item-img:hover .item-img-overlay span {
    opacity: 2;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1)!important;
    border-radius: 5px;
}

.item-img-overlay span i {
    font-size: 35px;
    color: #fff !important;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 10;
    right: 0;
}

.item-img:hover .item-img-overlay:before {
    border: 2px solid #fff;
    content: "";
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    top: 30px;
    z-index: 1;
    -webkit-transform: scaleX(1);
    border-radius: 5px;
}

.item-img-overlay span {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0px;
    opacity: 0;
    transition: opacity 250ms linear;
    background: no-repeat center center rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.filter-list li {
    position: relative;
}

.filter-list li:after {
    content: "/";
    position: absolute;
    top: 8px;
    right: -8px;
    color: #bbb;
    font-size: 12px;
}

.filter-list li:last-child:after {
    content: "";
    display: none;
}




/*===============================
    8.blog
=================================*/

.blog-box {
    border-radius: 5px;
    border: .0625rem solid rgba(0, 0, 0, .08);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1)!important;
    transition: transform .2s linear, box-shadow .2s linear;
    top: 0!important;
}

.blog-box:hover {
    transform: translateY(-4px)!important;
    -webkit-transform: translateY(-4px)!important;
}

.blog-part img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.blog-details {
    background-color: white;
    padding: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.blog-details h5 a {
    font-size: 1.25rem;
    color: #212529;
}

.font-weight-bold {
    font-weight: 700;
}


/*===============================
    8.Testimonial
=================================*/

.bg-testi {
    background-image: url(../images/bg-review.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.owl-theme .owl-controls .owl-page.active span {
    background: #fff;
}

.owl-theme .owl-controls .owl-page span {
    background: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    box-shadow: 0 0 0 0 #fff;
    height: 12px;
    width: 12px;
    opacity: 1;
    border: 2px solid #fff !important;
}

.user-review {
    letter-spacing: .03125rem;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.review-icons {
    margin: 0 auto;
}

.review-icons img {
    border: 6px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    height: 90px;
    width: 90px;
}

.testi-user-name {
    letter-spacing: .03125rem;
}

.testi-user-position {
    letter-spacing: .03125rem;
}

.testi-icon i {
    font-size: 35px;
}

.bg-overlay-graduint {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}


/*===============================
    9.Team 
=================================*/

.team-box {
    background-color: #fff !important;
    border-radius: 5px;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1)!important;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border: .0625rem solid rgba(0, 0, 0, .08);
    transition: transform .2s linear, box-shadow .2s linear;
    top: 0!important;
}

.team-box:hover {
    transform: translateY(-4px)!important;
    -webkit-transform: translateY(-4px)!important;
}

.team-box .team-member img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
}

.team-social li a {
    color: #000;
    transition: all 0.52s;
    line-height: 30px;
    font-size: 14px;
    display: inline-block;
}

.team-info p {
    font-size: 12px;
}


/*===============================
    10.Blog
=================================*/

.blog-box {
    border-radius: 5px;
    border: .0625rem solid rgba(0, 0, 0, .08);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1)!important;
    transition: transform .2s linear, box-shadow .2s linear;
    top: 0!important;
}

.blog-box:hover {
    transform: translateY(-4px)!important;
    -webkit-transform: translateY(-4px)!important;
}

.blog-part img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.blog-details {
    background-color: white;
    padding: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.blog-details h5 a {
    font-size: 1.25rem;
    color: #212529;
}

.font-weight-bold {
    font-weight: 700;
}


/********************
    11. pricing
*********************/

.price-box {
    padding: 50px 20px;
    border-radius: 5px;
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, .1)!important;
    transition: transform .2s linear, box-shadow .2s linear;
    top: 0!important;
}

.price-box:hover {
    transform: translateY(-4px)!important;
    -webkit-transform: translateY(-4px)!important;
}





/********************
    13. Footer
*********************/

.bg-footer {
    padding: 80px 0px 40px 0px;
    /*background: linear-gradient(to right, #203053, #1f2d4e);*/
    background-color: #212529;
}

.footer-icons li a {
    height: 36px;
    width: 36px;
    color: #97a0af;
    text-align: center;
    font-size: 14px;
    display: inline-block;
    line-height: 32px;
    border-radius: 50%;
    border: 2px solid #97a0af;
    transition: all 0.5s;
}

.footer-icons li a:hover {
    color: #fff;
    border-color: #fff;
}

.copyright {
    color: #97a0af;
}

.footer-list-menu li a {
    color: #97a0af;
    font-size: 14px;
    margin-bottom: 18px;
    display: inline-block;
    transition: all 0.5s;
}

.footer-list-menu li a:hover {
    color: #fff;
}


/** Footer light **/

.footer-light {
    padding: 80px 0px 40px 0px;
    color: #949494 !important;
}

.footer-light .copyright,
.footer-light .footer-list-menu li a {
    color: #949494;
}

.footer-light .footer-list-menu li a:hover {
    color: #313951;
}

.footer-light .footer-icons li a {
    color: #949494;
    border: 2px solid #949494;
}

.footer-light .footer-icons li a:hover {
    color: #313951;
    border: 2px solid;
}


/*--------DEMO 5 ----------*/


/*helf screen*/

.home-height-half {
    padding: 220px 0 220px 0;
    height: auto;
    position: relative;
}

.back-slide {
    height: 100vh;
}

.play-icon-circle {
    background-color: transparent;
    border: 3px solid #667add;
}

.play-icon-circle {
    height: 64px;
    width: 64px;
    line-height: 58px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    font-size: 28px;
    transition: transform .2s linear, box-shadow .2s linear;
    top: 0!important;
}

.play-icon-circle:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    opacity: 0.9;
}

.watch-video a span {
    font-size: 16px;
    padding-left: 10px;
    position: relative;
    top: -5px;
}

.nectar_video_lightbox.play_button {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0;
    display: inline-block;
}


/*--------DEMO 6 ----------*/


/* flexdemo */

.flex-control-paging li a {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    box-shadow: 0 0 0 0 #fff;
    height: 12px;
    width: 12px;
    opacity: 1;
    border: 2px solid #fff !important;
    background: #fff;
}

.flex-control-paging li a:hover {
    background: #fff;
}

.main-slider .flex-control-paging li a.flex-active {
    background-color: transparent;
}


/*--------DEMO 7 ----------*/


/* background gradient */

.bg-gradient {
    background: -webkit-linear-gradient(#667add, #8296ff);
    background: -moz-linear-gradient(#667add, #8296ff);
    background: -ms-linear-gradient(#667add, #8296ff);
    background: -o-linear-gradient(#667add, #8296ff);
    background: linear-gradient(#667add, #8296ff);
}


/*--------DEMO 8 ----------*/


/* registration page */

.home-registration-form {
    border-radius: 3px;
    box-shadow: 0px 0px 3px 0px #000000;
}

.home-registration-form .form-title {
    font-size: 24px;
    text-align: center;
}

.home-registration-form .form-subtitle {
    line-height: 1.4;
    font-size: 18px;
}

.home-registration-form .registration-form label {
    font-size: 14px;
}

.home-half {
    padding-bottom: 150px;
    padding-top: 180px;
    background-size: cover;
    background-position: center center;
    position: relative;
}


/*--------DEMO 9----------*/

.slidero {
    position: relative;
    z-index: 1;
}


/*----------DEMO 10-----------*/

.bg-video {
    height: 100vh;
    background-color: #000;
}

/************************************
    14. Responsive Media query
*************************************/

@media (max-width: 768px) {
    .home-title {
        font-size: 28px;
    }
    .home-sub-title {
        font-size: 14px;
    }
    .home-half {
        padding-bottom: 85px;
        padding-top: 120px;
    }
    .home-height-half {
        height: 100vh !important;
    }
    .navbar-light .logo {
        line-height: 0px !important;
        padding: 0px !important;
    }
    .service-box .service-desc {
        width: auto;
        margin-left: 0%;
    }
    .service-box .service-icon {
        top: -15px;
        position: relative;
        transform: none;
        left: 0;
    }
}

@media only screen and (max-width: 479px) {
    #style-switcher {
        display: none;
    }
}

/* Ensure the paragraph text is justified */
.about-paragraph {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    overflow: hidden; /* Hide overflow for sliding effect */
}

/* Sliding animation for the paragraph */
.slide-in {
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 1.5s ease-out forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Simple title styling */
.animated-title {
    font-size: 2.5rem;
    color: #333;
}


/* Contact us */

body {
    font-family: Arial, sans-serif;
}

/* Container Styling */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    flex-wrap: wrap; /* Ensures elements stack on smaller screens */
    gap: 20px;
}

/* Contact Info & Form */
.contact-info, .contact-form {
    flex: 1;
    max-width: 48%; /* Adjusts dynamically */
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Items */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: #0056b3;
    margin-right: 15px;
}

/* Button */
.btn-custom {
    background-color: #0056b3;
    color: #fff;
}

/* Illustration */
.illustration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 150px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack elements */
        padding: 20px; /* Reduce padding */
    }

    .contact-info, .contact-form {
        max-width: 100%; /* Full width */
    }

    .contact-form {
        padding: 20px; /* Adjust padding */
    }

    .mb-3.d-flex {
        flex-direction: column; /* Stack inputs */
        gap: 10px;
    }

    .mb-3.d-flex input {
        width: 100%; /* Full-width inputs */
    }
}




/* Scroll button */
/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #f0f0f0; /* Light gray */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #e0e0e0; /* Slightly darker on hover */
}

/* Arrow design */
.arrow {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-left: 3px solid black;
    border-bottom: 3px solid black;
    transform: rotate(-224deg); /* Now pointing upwards */
    margin-bottom: 2px; /* Adjust position */
}

#map {
    margin-bottom: 20px; /* Adjust the space as needed */
}

/*custom modle width style*/
.custom-modal-width {
    max-width: 800px; /* You can set this to any desired width */
    width: 90%; /* Optional: for responsive behavior */
}
.logo {
    flex: 0 0 auto;
    min-width: 0;
}
.logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
    margin-top: 9px;
    object-fit: contain;
}

/*==========================
  Trems and condition page
============================*/

body.terms-page #topnav {
    background-color: #151516 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .terms-hero-section {
    padding: 100px 20px 60px;
    background-color: #f9f9f9;
  }

  .terms-hero-section .container {
    max-width: 1140px;
    margin: auto;
  }

  .terms-text {
    flex: 1 1 45%;
    min-width: 300px;
  }

  .terms-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .terms-text p {
    font-size: 16px;
    color: #555;
    max-width: 500px;
  }

  .terms-image {
    flex: 1 1 45%;
    text-align: center;
    min-width: 300px;
  }

  .terms-image img {
    max-width: 100%;
    height: auto;
  }

  .modal-body ul {
    padding-left: 1.2rem;
    list-style-type: disc;
  }

  /*==========================
    Blog section
============================*/

.blog-header {
    background-color: #fff;
  }
  .blog-content-section {
    background-color: #f8f9fa;
  }
  .blog-content h2, .blog-content h3 {
    color: #2c3e50;
    margin-top: 30px;
  }
  .blog-content ul {
    padding-left: 20px;
  }
  .blog-content ul li {
    margin-bottom: 10px;
  }

.extra-margin-top {
    margin-top: 100px; /* or any value you want */
}