:root {
    --royal-blue: #1e3a8a;
    --teal: #0d9488;
    --gold: #d4a017;
    --navy: #0f172a;
    --light-blue: #e0f2fe;
    --white: #ffffff;
    --sand: #f5f0e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    /* background-image: url('Images/bg_fill.png'); */
}

.container {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    /* padding: 0 20px; */
    /* position: relative; */
    /* z-index: 2; */
}

/* Header & Navigation */
header {
    /* background-color: rgba(255, 255, 255, 0.95); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(3px);
    background-color: #1f1f1f1c
}

header.menu-bar {
    background-color: #1f1f1f38;
    padding: 6px 20px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  nav {
    display: flex; 
    /* flex-wrap: wrap;     */
    align-items: center;
    justify-content: flex-end; 
    position: relative;
  }

  .logo {
    display: flex    ;
        align-items: center;
        font-weight: 700;
        font-size: 24px;
        color: #111a34;
        background: #fff;
        border-radius: 0px 0px 15px 15px;
        /* position: relative; */
        left:0;
        z-index: 10;
        padding: 12px 16px;
        position: absolute;
        top: -10px;
        box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
}
    .logo img{
        width: 100%;
        height: 60px;
    }
  

  .logo-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }

  .nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
  }

  .menu-btn {
    background-color: #facc15;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    color: #fff !important;
    display: inline-block;
    background: none !important;
    border: 2px solid #ffffff !important;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: #111a34;
    position: relative;
    display: block;
    transition: all 0.3s ease-in-out;
  }

  .menu-toggle .hamburger::before,
  .menu-toggle .hamburger::after {
    content: "";
    width: 25px;
    height: 3px;
    background-color: #111a34;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
  }

  .menu-toggle .hamburger::before {
    top: -8px;
  }

  .menu-toggle .hamburger::after {
    top: 8px;
  }


  /* Responsive Styles */
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      align-items: flex-start;
    }

    .menu-toggle {
      display: block;
      margin-left: auto;
      margin-top: 10px;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        /* width: 49%; */
        /* background-color: #ffffff; */
        padding: 10px;
        border-radius: 8px;
        margin-top: 10px;
        /* gap: 10px; */

        width: 60%;
        /* background-color: #ffffff; */
        gap: 6px;
    
    }
    .btn.menu-btn{
        padding-left: 10px;
    }
    .tree1, .tree4, .tree5 ,.tree3 {
 
        display: none;
    }
    .blog-main-text {
        display: block !important;
    }
    .blog-left, .blog-right {
        width: 100% !important;
    }
    .blog-right img {
        width: -webkit-fill-available;
        padding: 20px 22px !important;
    }
    .nav-links.show {
        display: flex !important
;
        margin-top: 42px;
    }

    .nav-links li {
      width: 100%;
    }

    .nav-links li a {
      display: block;
      width: 100%;
      padding: 10px 0;
    }
  }
    @media (max-width:1080px) {

            header.menu-bar {
        background-color: #1f1f1f38;
        padding: 24px 20px;
    }
    .logo{
        top: -24px;
    }

         nav {
      flex-direction: column;
      align-items: flex-start;
    }

    .menu-toggle {
      display: block;
      margin-left: auto;
      margin-top: 10px;
    }

    .nav-links {
        display: none !important;
        flex-direction: column;
        /* width: 49%; */
        /* background-color: #ffffff; */
        padding: 10px;
        border-radius: 8px;
        margin-top: 10px;
        /* gap: 10px; */

        width: 60%;
        /* background-color: #ffffff; */
        gap: 6px;
    
    }

    .nav-links.show {
        display: flex !important;
        margin-top: 42px;
    }

    .nav-links li {
      width: 100%;
    }

    .nav-links li a {
      display: block;
      width: 100%;
      padding: 10px 0;
    }
  }
.wave-logo {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #060c1f;
}

.btn {
    display: inline-block;
    /* background-color: var(--royal-blue); */
    background-color: #ffffff;
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.btn:hover {
    background-color: #15296b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
    color:#fff;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

.btn-secondary:hover {
    background-color: var(--royal-blue);
    color: var(--white);
}

/* Hero Section with Beach Scene */
.hero {
    position: relative;
    /* height: 100vh; */
    min-height: 700px;

    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    /* background: var(--sand); */
    clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    color: var(--navy);
    position: relative;
    z-index: 2;
    padding: 40px;
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 16px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(3px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* background-color: rgb(0 0 0 / 14%); */
   
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.hero p {
    font-size: 21px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
}

/* Experience Demonstration */
.experience-demo {
    /* background-color: var(--sand); */
    padding: 120px 0 80px;
    position: relative;
    /* overflow: hidden; */
    
}


.scene-container {
    position: relative;
    height: 600px;
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.beach-scene {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1200/600') center/cover no-repeat;
    border-radius: 16px;
}

.guest {
    position: absolute;
    width: 120px;

    background-color: #f3ededde;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    cursor: pointer;
}

.guest:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.guest-1 {
    left: 36%;
    top: 66%;
}

.guest-2 {
    left: 28%;
    top: 33%;
}

.guest-3 {
    right: 18%;
    top: 45%;
    z-index: 99999;
}
.guest-4 {
    left: 86px;
    top: 70%;
    z-index: 99999;
}

.staff {
    position: absolute;
    width: 140px;
    height: 90px;
    background-color: var(--teal);
    color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: 10%;
    top: 4%;
    transition: all 0.5s;
}

.request-bubble {
    position: absolute;
    background-color: white;
    border-radius: 20px 20px 20px 4px;
    padding: 12px 20px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.guest-1:hover + .request-bubble-1 {
    opacity: 1;
    transform: translateY(-10px);
}

.guest-2:hover + .request-bubble-2 {
    opacity: 1;
    transform: translateY(-10px);
}

.guest-3:hover + .request-bubble-3 {
    opacity: 1;
    transform: translateY(-10px);
}
.guest-4:hover + .request-bubble-4 {
    opacity: 1;
    transform: translateY(-10px);
}

.request-bubble-1 {
    left: 31%;
    top: 75%;
}

.request-bubble-2 {
    left: 30%;
    top: 18%;
}

.request-bubble-3 {
    right: 6%;
    top: 30%;
}
.request-bubble-4 {
    left: 16%;
    top: 56%;
}

.transmission-line {
    position: absolute;
    border-top: 3px dashed var(--royal-blue);
    opacity: 0;
    transition: opacity 0.8s;
}

.guest-1:hover ~ .transmission-line-1,
.guest-2:hover ~ .transmission-line-2,
.guest-3:hover ~ .transmission-line-3 ,
.guest-4:hover ~ .transmission-line-4{
    opacity: 0.7;
    animation: dash 1s linear infinite;
}

.transmission-line-1 {
    width: 36%;
    top: 50%;
    left: 35%;
    transform: rotate(110deg);
}


.transmission-line-2 {
    width: 10%;
    top: 21%;
    left: 45%;
    transform: rotate(160deg);
}

.transmission-line-3 {
    width: 15%;
    top: 28%;
    right: 19%;
    transform: rotate(45deg);
}
.transmission-line-4 {
    width: 34%;
    top: 44%;
    left: 26%;
    transform: rotate(-45deg);
}


@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

.crewradio-device {
    position: absolute;
    width: 153px;
    /* height: 84px; */
    background-color: #1e3a8ad6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    right: 32%;
    /* bottom: 22%; */
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    top: 12%;
}

.pulse1-1 {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.8);
    right: 54%;
    bottom: 28%;
    z-index: 3;
    opacity: 0;
}

.pulse1-2 {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.8);
    right: 42%;
    top: 9%;
    z-index: 3;
    opacity: 0;
}
.pulse2-1 {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.8);
    right: 62%;
    bottom: 60%;
    z-index: 3;
    opacity: 0;
}

.pulse2-2 {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.8);
    right: 42%;
    top: 9%;
    z-index: 3;
    opacity: 0;
}
.pulse3-1 {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.8);
    right: 26%;
    bottom: 49%;
    z-index: 3;
    opacity: 0;
    z-index: 99999;
}
.pulse3-2 {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.8);
    right: 42%;
    top: 9%;
    z-index: 3;
    opacity: 0;
}
.pulse4-1 {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.8);
    left: 16%;
    top: 74%;
    z-index: 99999;
    opacity: 0;
}
.pulse4-2 {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.8);
    right: 42%;
    top: 9%;
    z-index: 3;
    opacity: 0;
}


.guest-1:hover ~ .pulse1-1,
.guest-1:hover ~ .pulse1-2,
.guest-2:hover ~ .pulse2-1,
.guest-2:hover ~ .pulse2-2,
.guest-3:hover ~ .pulse3-1,
.guest-3:hover ~ .pulse3-2,
.guest-4:hover ~ .pulse4-1,
.guest-4:hover ~ .pulse4-2


 {
    opacity: 1;
    animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* How It Works Section with Visual Flow */
.how-it-works {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
}

.flow-container {
    display: flex;
    margin-top: 80px;
    position: relative;
}

.flow-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.flow-icon {
    width: 100px;
    height: 100px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--royal-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}

.flow-item:hover .flow-icon {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.flow-connect {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e2e8f0;
    z-index: 1;
}

.flow-item h3 {
    margin: 20px 0 15px;
    font-size: 22px;
    color: var(--royal-blue);
}

/* Features Section with Visual Cards */
.features {
  background-image: url(./Images/3bg.png);
  background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(13, 148, 136, 0.1);
    z-index: 1;
}

.features:after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(30, 58, 138, 0.05);
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--teal);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--royal-blue);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--navy);
}

/* Real Use Case Section */
.use-case {
    background-color: var(--white);
    padding: 92px 0;
}
.use-case .section-header h2 {
    color:#ffffff;
}

.use-case .section-header p{
    color:#ffffff;
}

.scenario-container {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.scenario {
    flex: 1 1 300px;
    background-color: var(--light-blue);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.scenario h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--royal-blue);
}

.scenario-steps {
    list-style-type: none;
}

.scenario-steps li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.scenario-steps li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--teal);
}

.scenario-steps li:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 20px;
    width: 1px;
    height: calc(100% + 5px);
    background-color: var(--teal);
}

.scenario-steps li:last-child:after {
    display: none;
}

/* Testimonial Section */
.testimonials {
    background-color: var(--sand);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 300px;
    color: rgba(13, 148, 136, 0.1);
    font-family: serif;
    line-height: 0;
}

.testimonial-container {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.testimonial {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); */
        box-shadow: 0 0px 5px 4px rgba(0, 0, 0, 0.08);
    /* max-width: 1000px; */
    margin: 16px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 20px;
    overflow: hidden;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--navy);
}

.author-info p {
    color: #64748b;
    font-size: 14px;
}
.blog{

    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #2563eb 100%);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta:after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-white {
    background-color: var(--white);
    color: var(--royal-blue);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 30px 0;
    position: relative;

    /* background-image: url(./Images/footer-bg.png); */
    background-image: linear-gradient(170deg, #13141996 0%, #170c04f0 100%), url(./Images/footer-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-wave {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 60px;
  
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%230f172a'%3E%3C/path%3E%3C/svg%3E"); */
    background-size: cover;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* margin-bottom: 60px; */
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 40px;
    padding-right: 20px;
    text-align: center;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-col h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--teal);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a3b3c9;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}
.social-links a svg{
    color:#fff !important;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--teal);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a3b3c9;
    font-size: 14px;
  
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .flow-container {
        flex-direction: column;
    }
    
    .flow-item {
        margin-bottom: 60px;
    }
    
    .flow-connect {
        display: none;
    }
    
    .scene-container {
        height: 500px;
    }
    
    .guest, .staff, .crewradio-device {
        transform: scale(0.8);
    }
    
    .transmission-line {
        display: none;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 36px;
    color: var(--royal-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--teal);
}

.section-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 15px auto 0;
    color: #475569;
}
@-webkit-keyframes fadeIn {
    from {
        opacity:0;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeIn {
    from {
        opacity:0;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeIn {
    from {
        opacity:0;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
  
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
.fade-in {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*fadeInDown*/

@-webkit-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*fadeInUp*/
@-webkit-keyframes fadeInUp {
    from {
        opacity:0;
        -webkit-transform: translatey(10px);
        -moz-transform: translatey(10px);
        -o-transform: translatey(10px);
        transform: translatey(10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInUp {
    from {
        opacity:0;
        -webkit-transform: translatey(10px);
        -moz-transform: translatey(10px);
        -o-transform: translatey(10px);
        transform: translatey(10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity:0;
        -webkit-transform: translatey(10px);
        -moz-transform: translatey(10px);
        -o-transform: translatey(10px);
        transform: translatey(10px);
    }
  
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
.in-up {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

/** fadeInLeft **/

@-webkit-keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@-moz-keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-100px);
        -moz-transform: translatex(-100px);
        -o-transform: translatex(-100px);
        transform: translatex(-100px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
.in-left {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
/** fadeInRight **/

@-webkit-keyframes fadeInRight {
    from {
        opacity:0;
        -webkit-transform: translatex(10px);
        -moz-transform: translatex(10px);
        -o-transform: translatex(10px);
        transform: translatex(10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@-moz-keyframes fadeInRight {
    from {
        opacity:0;
        -webkit-transform: translatex(10px);
        -moz-transform: translatex(10px);
        -o-transform: translatex(10px);
        transform: translatex(10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity:0;
        -webkit-transform: translatex(100px);
        -moz-transform: translatex(100px);
        -o-transform: translatex(100px);
        transform: translatex(100px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}
.in-right {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.point-five {
     -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -o-animation-duration: .5s;
    animation-delay: .5s;
}

.point-seven {
     -webkit-animation-duration: .7s;
    -moz-animation-duration: .7s;
    -o-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-delay: .7s;
    -moz-animation-delay: 7s;
    -o-animation-duration: .7s;
    animation-delay: .7s;
}

.one-second {
     -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

.one-point-five {
     -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.two-seconds {
     -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}



.how-it-works{
    background-image: linear-gradient(170deg, #121516cf 0%, #02070dcf 100%), url(./Images/5.png);
    background-size: cover;
    background-position: center;
}
.how-it-works .section-header h2, .how-it-works  .section-header p, .how-it-works  h3, .flow-item p{
    color:#fff;
}
.cta {
    background-image: linear-gradient(170deg, #13141996 0%, #170c04f0 100%), url(./Images/4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.use-case{
    background-image:linear-gradient(170deg, #0a181d99 0%, #050f12e8 100%), url(./Images/2.png);
    background-size: cover;
    background-position: center;
}
.beach-scene{
    background-image:  url(./Images/Experience.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
}

.experience-demo{
     /* background: url(./Images/bg_fill2.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; */
}
.icon {
    font-size: 50px;
    position: absolute;
    animation-iteration-count: infinite;
    cursor: pointer;
    transition: transform 0.3s;
  }

  .icon:hover {
    transform: scale(1.3);
  }

  .sun {
    top: 30px;
    right: 50px;
    animation: spin 8s linear infinite;
  }

  .wave {
    top: 50%;
    left: 90%;
    transform: translateX(-50%);
    animation: waveMove 4s ease-in-out infinite;
  }

  .palm {
    bottom: 40px;
    left: 30px;
    animation: sway 5s ease-in-out infinite;
    transform-origin: bottom center;
  }

  .umbrella {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: float 6s ease-in-out infinite;
  }

  .starfish {
    bottom: 30px;
    right: 30px;
    animation: pulse 3s ease-in-out infinite;
  }

  .boat {
    top: 100px;
    left: 50px;
    animation: boatMove 5s ease-in-out infinite;
  }
  .shell {
    top: 70%;
    left: 20%;
    animation: pulse 4s ease-in-out infinite;
  }
  
  .crab {
    bottom: 8px;
    right: 50%;
    animation: crabWalk 5s ease-in-out infinite;
  }
  
  .cocktail {
    top: 160px;
    right: 20%;
    animation: float 6s ease-in-out infinite;
  }
  
  .flipflops {
    bottom: 20%;
    left: 10%;
    animation: bounce 3s ease-in-out infinite;
  }
  
  .snorkel {
    top: 60px;
    left: 40%;
    animation: float 5s ease-in-out infinite;
  }
  
  .fish {
    bottom: 10%;
    left: 60%;
    animation: swim 4s ease-in-out infinite;
  }
  
  .coconut {
    top: 200px;
    right: 5%;
    animation: rotate 5s linear infinite;
  }
  
  .kite {
    top: 20px;
    left: 10px;
    animation: kiteFly 6s ease-in-out infinite;
  }
  
  /* Add keyframes as needed */
  
  @keyframes crabWalk {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }
  
  @keyframes swim {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
  }
  
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes kiteFly {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes waveMove {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
  }

  @keyframes sway {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-60%) translateX(5px); }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
  }

  @keyframes boatMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
  }


  .title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #222;
  }
  
  .blog-slider .slick-slide {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 10px;
  }
  
  .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  }
  
  .blog-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 20px;
    flex: 1;
  }
  
  .blog-content h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
  }
  
  .blog-content p {
    font-size: 15px;
    color: #666;
    margin: 10px 0;
  }
  
  .read-more {
    text-decoration: none;
    color: #074384;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .read-more:hover {
    color: #0056b3;
  }
  .slick-next:before, .slick-prev:before {
    font-family: slick;
    font-size: 40px !important;
  }
  .slick-prev {
    left: -50px !important;
}

.bg-icons .icon{
    opacity: 0.2;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .container.custom-container {
    
    margin: 0 auto;
    display: flex
;
    justify-content: center;
    text-align: center;
  
    position: absolute;
}
.tree1 {
    position: absolute; 
    top: -158px;
    left: 0%;
    /* z-index: 99999; */
    z-index: 999;
    pointer-events: none; 
  }
.tree2 {
    position: absolute; 
    top: -158px;
    left: 25%;
    /* z-index: 99999; */
    z-index: 999;
    pointer-events: none; 
  }
  .tree3 {
    position: absolute;
    top: -133px;
    left: 56%;
    /* z-index: 99999; */
    z-index: 999;
    pointer-events: none; 
  }
  .tree4 {
    position: absolute;
    top: -20px;
right:0;
    /* z-index: 99999; */
    z-index: 999;
    pointer-events: none; 
  }
  .tree5 {
    position: absolute;
    top: -212px;
right:0;
    /* z-index: 99999; */
    z-index: 999;
    pointer-events: none; 
  }

  .hero-video {
    position: relative;
    z-index: 1;
  }
  .hero {
    display: flex;
    justify-content: center;   
    align-items: center;     
  /* height: 100vh; */
    position: relative;      
    /* overflow: hidden;      */
    /* background-image: url('./Images/bg_fill_1.png');   */
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
  }
  .menu-bar.scrolled {
    background-color: #ffffff !important;
    background-image: none;
    z-index: 999999;
}

  .menu-bar.scrolled .nav-links a {
    color: #000;
  }
  .menu-bar.scrolled .nav-links a.btn.menu-btn{
    color: #000 !important;
  }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: 1;
  }

  .video-overlay video {
    width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.2;
  }
  .main{
       background-image: url('./Images/bg_fill-main.png');  
       background-position: center;
       background-repeat: no-repeat;
       background-size: cover;
  }
  .btn.menu-btn:hover{
    color:#ffffff !important;
  }

  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    animation: slideDown 0.3s ease-in-out;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }


  
  @media (min-width:768px) and (max-width:991px){
    .footer-col {
        flex: auto;
  }
  header.menu-bar {
    background-color: #1f1f1f38;
    padding: 24px 20px;
}
.logo {
 
    top: -24px;
}
  }
  @media (max-width:767px) {
    .menu-toggle{
        position: absolute;
        top: -12px;
        right: 0;
       
    }
    .logo {
             left: 16%;
        z-index: 10;
        /* padding: 3px 16px; */
        padding: 0px 4px;
        top: -16px;
        width: 64%;
    }
    .nav-links li{
        margin: 0;
    }
    header.menu-bar {
        background-color: #1f1f1f38;
        padding: 16px 20px !important;
    }
    .tree2{
        display: none;
    }
    .staff{
        right: 2%;
    top: 2%;
    }
    .crewradio-device{
        right: 48%;
    }
    .guest-1{
        left: 50%;
        top: 65%;
    }
    .guest-2{
        left: 2%;
        top: 32%;
    }
    .guest-3{
        right: 0%;
        top: 32%;
    }
    .guest-4{
        left: -4px;
    top: 73%;
    }
    .author-image{
        /* margin: 0; */
        width: 34%;
        height: 50%;
    }
    .banner {
        padding: 36px 0px !important;
    }
    .banner h2 {
      
        font-size: 23px !important;
    }
    .logo img {
        width: 100%;
         height: 100%; 
    }
  }
  @media (min-width:375px) and (max-width:420px){
    .author-image {

        width: 40%;
        height: 50%;
    }
    .testimonial {
 
        padding: 24px;
    }
    .logo {
        /* left: 18%; */
  }

  }
  @media (min-width:320px) and (max-width:374px){
    .author-image {
        width: 54%;
        height: 50%;
    }
 
    .testimonial {
 
        padding: 24px;
    }
    .logo {
        left: 12%;
  }
}

/* index models */
 .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2% 0;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 80%;
  /* max-width: 900px; */
  /* padding: 2% 0; */
  animation: modalFadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 111111;
}

@keyframes modalFadeIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width:768px){
    .modal-content{
        margin: 50% auto;

    }
}
.hero-buttons .btn.in-up.two-seconds{
    background-color:#fff ;
    color: #000;
}
.hero-buttons .btn.btn-secondary.in-up.two-seconds{
    background-color: #444;
    color: #fff;
}
.btn.in-up.two-seconds{
    background-color: #e8e8e8;
    color: #000000;
}
.btn.btn-secondary.in-up.two-seconds{
    background-color: #444;
    color: #fff;

}



/* request demo */
/* * request demo styles */
 
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}
 
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    display: none;
    width: 440px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 111111;
}
 
.popup h4 {
    margin-top: 0;
}
 
.register-form input {
    flex: 1;
    padding: 8px;
    /* margin-bottom: 10px; */
    border: 1px solid #ccc;
    border-radius: 4px;
}
 
.register-form button {
    width: 30%;
    padding: 10px;
    background: linear-gradient(135deg, #1ecb3d, #066927);
    color: white;
    border: none;
    border-radius: 14px;
    margin: auto;
    font-size: 16px;
}
 
.error {
    color: red;
    margin-bottom: 10px;
}
 
.success {
    color: green;
    margin-top: 10px;
    text-align: center;
}
 
#overLayBackgroundReg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}
 
#overLayBackgroundReg img {
    width: 50px;
}
 
.send-img-login {
    /* width: 74px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-235deg, #17b9cb, #f6eb65, #ff081f);
    border-radius: 50%;
    position: absolute;
    top: -32px;
    right: 48px;
    z-index: 999999; */
      width: 74px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d6edff;
    border-radius: 50%;
    position: absolute;
    top: -32px;
    right: 48px;
    z-index: 999999;
    box-shadow: rgb(228 231 234) 0px 0px 3px 0px; 
}
 
.send-img-login img {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.demo-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #094893;
    padding-bottom: 20px;
    position: relative;
    z-index: 999999;
}
 
.demo-submit {
    width: auto;
    padding: 10px 50px;
    background: linear-gradient(135deg, #1ecb3d, #066927);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0px 0px 0px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.demo-field {
    width: 100%;
    display: flex;
    margin: auto;
    align-items: center;
        padding: 10px 0px;
}
.demo-field .fa{
      width: 30px;
    color: #094893;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    z-index: 999999;
    background: transparent;
    border: none;
    display: block;
    width: 30px;
    text-align: center;
}


/* responsive  */
@media (min-width:530px) and (max-width:766px){
.logo {
        left: 23%;

        width: 54%;
      }
}



/* blog1 */
   /* section {
      margin-bottom: 40px;
    } */

    .blog-post .post-title {
        color: #1e3a8a;
        font-size: 20px;
      margin-bottom: 12px;
      font-weight: 600;
    
    }

    article ul, ol {
      padding-left: 22px;
    }

    article ul li, ol li {
      margin-bottom: 8px;
    }
 .blog-conclusion {
        background-color: #f4f3f2;
    border-left: 6px solid #1e3a8a;
    padding: 20px;
    border-radius: 8px;
    }


    .banner {
    padding: 120px 0px;
    text-align: center;
  width: 100%;

  background-image:url(./Images/blog_common.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);
}


.banner h2 {
  margin: 0;
    font-size: 2rem;
    color: #FFFFFF;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0;
    padding: 0.5em 0 0 0;
}

.banner p {
    color: #FFFFFF;
    font-size: 1em;
    font-weight: bold;
    margin: 1em 0 0 0;
    line-height: 2em;
    letter-spacing: 2px;
  padding: 0 0 2em 0;
}

.border-bottom {
    border-top: 0;
    /* border-bottom: 2px solid #fff !important; */
}
.blog-main-text{
  display: flex;
}
.blog-left, .blog-right{
  width:50%;
}
.blog-right img{
  width: -webkit-fill-available;
  padding: 0px 22px;
}
.blog-social-links{
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.blog-social-links .social-icon{
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: gray;
    color: #fff;
}
.post-title{
    font-size: 34px !important;
    font-weight: 600;
    color: #155bafe0 !important;
    padding: 10px 0 ;
}
main {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-top: 30px !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }

      main {
        padding: 25px;
        margin: 20px 10px;
      }
    }












    /* new styles */
    .modal {
  display: none;
  position: fixed;
  z-index: 1111111;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2% 0;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  position: relative; 
  margin: auto;
  padding: 20px;
  width: 80% !important;
  /* max-width: 900px; */
  /* padding: 2% 0; */
  animation: modalFadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 111111;
}

@keyframes modalFadeIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width:768px){
    .modal-content{
        margin: 50% auto;

    }
}
.hero-buttons .btn.in-up.two-seconds{
    background-color:#fff ;
    color: #000;
}
.hero-buttons .btn.btn-secondary.in-up.two-seconds{
    background-color: #444;
    color: #fff;
}
.btn.in-up.two-seconds{
    background-color: #e8e8e8;
    color: #000000;
}
.btn.btn-secondary.in-up.two-seconds{
    background-color: #444;
    color: #fff;

}



/* request demo */
/* * request demo styles */
 
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}
 
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    display: none;
    width: 440px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 111111;
}
 
.popup h4 {
    margin-top: 0;
}
 
.register-form input {
    flex: 1;
    padding: 8px;
    /* margin-bottom: 10px; */
    border: 1px solid #ccc;
    border-radius: 4px;
}
 
.register-form button {
    width: 30%;
    padding: 10px;
    background: linear-gradient(135deg, #1ecb3d, #066927);
    color: white;
    border: none;
    border-radius: 14px;
    margin: auto;
    font-size: 16px;
}
 
.error {
    color: red;
    margin-bottom: 10px;
}
 
.success {
    color: green;
    margin-top: 10px;
    text-align: center;
}
 
#overLayBackgroundReg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}
 
#overLayBackgroundReg img {
    width: 50px;
}
 
.send-img-login {
    /* width: 74px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-235deg, #17b9cb, #f6eb65, #ff081f);
    border-radius: 50%;
    position: absolute;
    top: -32px;
    right: 48px;
    z-index: 999999; */
      width: 74px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d6edff;
    border-radius: 50%;
    position: absolute;
    top: -32px;
    right: 48px;
    z-index: 999999;
    box-shadow: rgb(228 231 234) 0px 0px 3px 0px; 
}
 
.send-img-login img {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.demo-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #094893;
    padding-bottom: 20px;
    position: relative;
    z-index: 999999;
}
 
.demo-submit {
    width: auto;
    padding: 10px 50px;
    background: linear-gradient(135deg, #1ecb3d, #066927);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0px 0px 0px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.demo-field {
    width: 100%;
    display: flex;
    margin: auto;
    align-items: center;
        padding: 10px 0px;
}
.demo-field .fa{
      width: 30px;
    color: #094893;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    z-index: 999999;
    background: transparent;
    border: none;
    display: block;
    width: 30px;
    text-align: center;
}


/* responsive  */
@media (min-width:530px) and (max-width:766px){
.logo {
        left: 23%;

        width: 54%;
      }
}


   .blog-post {
      margin-bottom: 4rem;
          padding: 0 15px;
    }


    /* blog detail pages */
        .right-side{
        background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    }


            /* recent post */
        
 .single-sidebar-widget {

    margin-bottom: 16px;
    border-radius: 10px;
}
 .single-sidebar-widget .wid-title {
    margin-bottom: 12px;
}
 .single-sidebar-widget .wid-title h3 {
    position: relative;
    padding-bottom: 15px;
}
 .single-sidebar-widget .wid-title h3::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 83px;
    content: "";
    background-color: #999;
}
 .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
    margin-bottom: 20px;
}
 .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
.recent-thumb img {
    border-radius: 6px;
    width: 100px;
}

.recent-content a{
       color:#999;
       text-decoration: none;
}
.recent-post-area a{
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}
 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
    margin-bottom: 8px;
        padding-left: 0px;
}
 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
    font-weight: 700;
    font-size: 14px;
       color:#999;
       border: none;

}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.product-image img {
    width: 100%;
}
form#registerForm {
    width: 90%;
    margin: auto;
}

.slick-next:before, .slick-prev:before{
        color: #8a8a8a !important;
}