/**
* Template Name: Appland
* Template URL: https://bootstrapmade.com/free-bootstrap-app-landing-page-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
:root {
    --button-color: #1c4791;
    --primary-color: #1c4791;
    --heading-color: #2c3e50;
    --heading-fontsize: 38px;
    --text-color: #4a5568;
    --background-gray: #f4f6f8;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Poppins", sans-serif; /*"Open Sans", sans-serif;*/
    color: var(--text-color); /*#585a61;*/
}

a {
  color: #5777ba;
  text-decoration: none;
}

a:hover {
  color: #7b94c9;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5777ba;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #748ec6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #5777ba;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-family: "Poppins", sans-serif;
        font-size: 15px;
        color: #47536e;
        white-space: nowrap;
        transition: 0.3s;
    }

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--button-color);
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

    .navbar .getstarted:hover,
    .navbar .getstarted:focus:hover {
        background: var(--button-color); /*#748ec6;*/
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(52, 152, 219, 0.25);
    }

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px 0;
}

#hero::before {
  content: "";
  position: absolute;
  right: -100%;
  top: 20%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background-color: #e8ecf5;
  transform: skewY(135deg);
}

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 500;
        line-height: 56px;
        color: var(--primary-color); /*#5777ba;*/
        font-family: "Poppins", sans-serif;
    }

#hero h2 {
  color: #515f7d;
  margin-bottom: 50px;
  font-size: 20px;
}

    #hero .download-btn {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 15px;
        display: inline-block;
        padding: 8px 24px 10px 46px;
        border-radius: 3px;
        transition: 0.5s;
        color: #fff;
        background: #47536e;
        position: relative;
    }

#hero .download-btn:hover {
  background: #5777ba;
}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn+.download-btn {
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .download-btn+.download-btn {
    margin: 0 10px;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f5fa;
}

/*.section-title {
  text-align: center;
  padding-bottom: 30px;
}*/

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5777ba;
  font-family: "Poppins", sans-serif;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 75px;
  padding: 15px 0;
  background-color: #f6f8fb;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features .content {
  padding: 30px 0;
}

.features .content .icon-box {
  margin-top: 25px;
}

.features .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5777ba;
}

.features .content .icon-box p {
  font-size: 15px;
  color: #979aa1;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }

  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #47536e;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #5777ba;
  line-height: 0;
}

.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-slide {
  transition: 0.3s;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5777ba;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5777ba;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #5777ba;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
    border-radius: 25px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 10px 30px 50px;
  min-height: 200px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e8ecf5;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5777ba;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5777ba;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
    font-size: 46px;
    color: #5777ba;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #5777ba;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
    background: #47536e;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #5777ba;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #5777ba;
}

.pricing .featured .get-started-btn:hover {
  background: #748ec6;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .accordion-list {
  padding: 0 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li+li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b1c0df;
}

.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  color: #343a40;
}

.faq .accordion-list a.collapsed:hover {
  color: #5777ba;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}









/* ============================ New design Css ==================================*/

/* Hero Section */
.hero-section {
    padding: 100px 0 !important;
    /* background: white; */
    position: relative;
    background: linear-gradient(180deg,rgb(236,247,255) 0%,rgb(255,243,236) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Text */
.hero-text {
    max-width: 600px;
}

/* Typography - Exact from screenshot */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-color); /* #1a202c; */
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 530px;
}

/* CTA Buttons - Exact from screenshot */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    min-width: 180px;
}

.btn-primary {
    background: var(--button-color);
    color: white;
}

    .btn-primary:hover {
        background: var(--button-color);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(49, 130, 206, 0.2);
    }
.btn:first-child:active {
    background: var(--button-color);
    color: white;
}
.btn-secondary {
    background: white;
    color: var(--button-color);
    border: 2px solid var(--button-color);
}

.btn:hover {
    border-color: var(--button-color);
}

.btn-secondary:hover {
    background: var(--button-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(49, 130, 206, 0.2);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-container {
    border-radius: 12px;
    overflow: hidden;
    /*  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

    .image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Hero Video */
.hero-video {
    position: relative;
    width: 100%;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /*  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid #e2e8f0; */
    background: transparent; /*#000;*/
    aspect-ratio: 16/9; /* Standard video aspect ratio */
    height: auto;
}

.hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: opacity 0.5s ease;
}

    .hero-video-player[poster] {
        background-color: #f8f9fa;
    }

/* Video Overlay Controls */
.video-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

    .video-control-btn:hover {
        background: rgba(52, 152, 219, 0.9);
        transform: scale(1.1);
    }

    .video-control-btn i {
        font-size: 20px;
    }

/* Video Loading State */
.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 2;
}

    .video-loading.loaded {
        opacity: 0;
        pointer-events: none;
    }

.loading-spinner {
    margin-bottom: 15px;
}

    .loading-spinner i {
        font-size: 40px;
        color: #3498db;
    }

.video-loading p {
    font-size: 16px;
    color: #bdc3c7;
    margin: 0;
}

/* Video Play State Indicator */
.hero-video-player.playing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-container {
        border-radius: 18px;
    }
}

@media (max-width: 992px) {
    .video-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .video-container {
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .video-overlay {
        bottom: 15px;
        right: 15px;
    }

    .video-control-btn {
        width: 36px;
        height: 36px;
    }

        .video-control-btn i {
            font-size: 18px;
        }
}

@media (max-width: 576px) {
    .video-container {
        border-radius: 12px;
    }

    .video-overlay {
        bottom: 10px;
        right: 10px;
    }

    .video-control-btn {
        width: 32px;
        height: 32px;
    }

    .loading-spinner i {
        font-size: 32px;
    }

    .video-loading p {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}


/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.how-it-works-title {
    text-align: center;
    margin-bottom: 60px;
}

    .how-it-works-title h2 {
        font-size: var(--heading-fontsize);
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 10px;
    }

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Step Card */
.step-card {
    background: white;
    border-radius: 32px;
    padding: 30px 25px;
    text-align: center;
    /*  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                    transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }

.step-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--button-color); /* #3498db; */
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    text-align: center;
}

.btn-start-broadcasting {
    display: inline-block;
    background: var(--button-color); /* linear-gradient(135deg, #3498db, #2c3e50); */
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    /*  transition: all 0.3s ease;
                    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3); */
}

    .btn-start-broadcasting:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(52, 152, 219, 0.4);
        color: white;
        text-decoration: none;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-container {
        gap: 20px;
    }

    .step-card {
        padding: 25px 20px;
    }
}

@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works-title h2 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 15px;
    }

    .btn-start-broadcasting {
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .steps-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }
}


/*=============================================== FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: var(--heading-fontsize);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

    .faq-question:hover {
        background-color: #f8f9fa;
    }

    .faq-question[aria-expanded="true"] {
        background-color: #f0f8ff;
        border-bottom: 1px solid #e2e8f0;
    }

.question-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.question-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color); /* linear-gradient(135deg, #3498db, #2c3e50); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .question-icon i {
        font-size: 24px;
        color: white;
    }

.question-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.4;
}

.question-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-question:hover .question-toggle {
    background: #e9ecef;
}

.question-toggle i {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .question-toggle i {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    padding: 0 30px;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .faq-answer.show {
        padding: 30px;
        max-height: 500px;
    }

    .faq-answer p {
        font-size: 16px;
        color: var(--text-color);
        line-height: 1.6;
        margin: 0;
        padding-left: 70px; /* Align with question text */
    }

/* FAQ CTA */
.faq-cta {
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background: var(--primary-color); /* linear-gradient(135deg, #3498db, #2c3e50); */
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .cta-icon i {
        font-size: 36px;
    }

.cta-content {
    flex: 1;
}

    .cta-content h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cta-content p {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .cta-content .btn-primary {
        background: white;
        color: var(--primary-color);
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        display: inline-block;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .cta-content .btn-primary:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

/* Responsive Design */
@media (max-width: 992px) {
    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .faq-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
    }

    .question-content {
        gap: 15px;
    }

    .question-icon {
        width: 40px;
        height: 40px;
    }

        .question-icon i {
            font-size: 20px;
        }

    .question-text h3 {
        font-size: 16px;
    }

    .faq-answer p {
        padding-left: 0;
        font-size: 15px;
    }

    .faq-answer.show {
        padding: 20px;
    }

    .cta-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
    }

        .cta-icon i {
            font-size: 28px;
        }

    .cta-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 18px;
    }

    .question-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .question-icon {
        width: 36px;
        height: 36px;
    }

        .question-icon i {
            font-size: 18px;
        }

    .question-text h3 {
        font-size: 15px;
    }

    .question-toggle {
        width: 36px;
        height: 36px;
    }

        .question-toggle i {
            font-size: 20px;
        }
}


/* Contact Section */
/* ======================================= Contact Section - Redesigned */
.contact-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column: Contact Info */


.contact-header {
    margin-bottom: 20px;
}

.contact-main-title {
    font-size: 56px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details-section {
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.contact-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

.company-info {
    margin-top: 20px;
}

.company-address h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.company-address p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
}

/* Right Column: Contact Form */
.contact-form-column {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #e2e8f0;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    /* gap: 25px; */
}

/* Form Labels */
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    ;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required-star {
    color: #e74c3c;
    margin-left: 4px;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-color);
    background: white;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

    .form-control::placeholder {
        color: #a0aec0;
        opacity: 0.8;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Form Row for Half Width Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.half-width {
    width: 100%;
}

/* Submit Button */
.submit-btn {
    background: var(--button-color); /* linear-gradient(135deg, #3498db, #2c3e50); */
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .submit-btn:hover::before {
        left: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(52, 152, 219, 0.25);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

    .submit-btn i {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .submit-btn:hover i {
        transform: translateX(5px);
    }

/* Status Messages */

.form-status {
    min-height: 10px; /* Reserve space for messages */
}

.status-loading,
.status-error,
.status-success {
    display: none; /* Hide all messages by default */
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 10px;
    margin: 10px 0;
    font-size: 14px;
}

    .status-loading.active,
    .status-error.active,
    .status-success.active {
        display: flex; /* Show only active message */
    }

.status-loading {
    background: #ebf8ff;
    border: 1px solid #bee3f8;
    color: var(--text-color);
}

.status-error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
}

.status-success {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    color: #276749;
}

.form-status.active {
    display: flex;
}

.form-status i {
    font-size: 20px;
}

.status-loading i {
    color: #3498db;
}

.status-error i {
    color: #c53030;
}

.status-success i {
    color: #38a169;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(52, 152, 219, 0.1), transparent);
        transition: width 0.3s ease;
    }

    .contact-card:hover {
        border-color: var(--primary-color);
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
    }

        .contact-card:hover::before {
            width: 5px;
        }

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.contact-card-icon i {
    font-size: 28px;
    color: white;
}

.contact-card-content {
    flex: 1;
    width:100%;
}

    .contact-card-content h4 {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

.contact-card:hover .contact-card-content h4 {
    /* color: var(--primary-color); */
}

.contact-card-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-number {
    color: var(--primary-color);
}

.contact-card-email {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-email {
    color: var(--primary-color);
}

.contact-card-note {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
    font-style: italic;
}

/* Make phone card clickable */
.phone-card {
    cursor: pointer;
}

    .phone-card:hover .contact-card-number {
        text-decoration: underline;
    }

/* Make email card clickable */
.email-card {
    cursor: pointer;
}

    .email-card:hover .contact-card-email {
        text-decoration: underline;
    }

/* Validation Error States */
.input-wrapper.has-error .form-control {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.input-wrapper.has-error .floating-label {
    color: #e74c3c;
}

.field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Disabled button state */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

    .submit-btn:disabled:hover {
        box-shadow: none !important;
        transform: none !important;
    }

    .submit-btn:disabled::before {
        display: none;
    }

/* Responsive Design for Contact Cards */
@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
        gap: 15px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

        .contact-card-icon i {
            font-size: 24px;
        }

    .contact-card-number {
        font-size: 20px;
    }

    .contact-card-email {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-cards {
        gap: 15px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-card-icon {
        margin: 0 auto;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 60px;
    }

    .contact-main-title {
        font-size: 48px;
    }

    .contact-form-column {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }

    .contact-info-column {
        padding-top: 0;
    }

    .contact-main-title {
        font-size: 42px;
    }

    .contact-form-column {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-main-title {
        font-size: 36px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-subtitle {
        font-size: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form-column {
        padding: 30px;
    }

    .form-control {
        padding: 14px 16px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .contact-main-title {
        font-size: 32px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-form-column {
        padding: 25px;
    }

    .submit-btn {
        padding: 16px 30px;
        font-size: 15px;
    }

    .company-address p {
        font-size: 15px;
    }
}

/*================================ Benefits Section - Unique Classes */
.benefits-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.benefits-header {
    margin: 0px;
}

.benefits-title {
    font-size: var(--heading-fontsize);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: left;
}

.benefits-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Main Content */
.benefits-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Benefits Cards Column */
.benefits-card-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

    .benefits-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(52, 152, 219, 0.1), transparent);
        transition: width 0.4s ease;
    }

    .benefits-card:hover {
        border-color: var(--primary-color); /* #3498db; */
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
    }

        .benefits-card:hover::before {
            width: 5px;
        }

.benefits-card-active {
    border-color: var(--button-color); /* #3498db; */
    background: #f0f8ff;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
    transform: translateX(10px);
}

    .benefits-card-active::before {
        width: 5px;
        background: var(--button-color); /* linear-gradient(90deg, #3498db, rgba(52, 152, 219, 0.3)); */
    }

.benefits-card-icon {
    width: 60px;
    height: 60px;
    background: var(--background-gray); /* linear-gradient(135deg, #3498db, #2c3e50); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .benefits-card-icon > img {
        width: 40px;
    }

.benefits-card:hover .benefits-card-icon {
    transform: scale(1.1);
}

.benefits-card-active .benefits-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.benefits-card-icon i {
    font-size: 28px;
    color: white;
}

.benefits-card-text {
    flex: 1;
}

    .benefits-card-text h3 {
        font-size: 22px;
        font-weight: 700;
        color: var(--heading-color); /* #2c3e50; */
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }

.benefits-card:hover .benefits-card-text h3,
.benefits-card-active .benefits-card-text h3 {
    color: var(--primary-color); /* #3498db; */
}

.benefits-card-text p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.benefits-card-arrow {
   /* display: flex;*/
   display:none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.benefits-card:hover .benefits-card-arrow,
.benefits-card-active .benefits-card-arrow {
    background: var(--primary-color); /* #3498db; */
    color: white;
    transform: translateX(5px);
}

.benefits-card-arrow i {
    font-size: 20px;
}

/* Benefits Image Column */
.benefits-right-column {
    position: relative;
    height: 100%;
    /*margin-top: 125px;*/ /* This aligns images with the cards */
}

.benefits-image-column {
    position: relative;
    height: 100%;
}

.benefits-image-container {
    /*position: relative;*/
    background: white;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            height: 100%;*/
    height: auto;
    min-height: 600px;
}

.benefits-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius:30px;
}

    .benefits-image.active {
        opacity: 1;
        z-index: 2;
    }

/* Fallback for missing images */
.benefits-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    padding: 40px;
}

.fallback-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.fallback-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.fallback-url {
    font-size: 14px;
    color: #3498db;
    font-weight: 600;
}

.fallback-widgets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

    .fallback-widgets span {
        font-size: 11px;
        color: var(--text-color);
        background: white;
        padding: 4px 10px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        font-weight: 500;
    }

.fallback-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fallback-datetime,
.fallback-weather {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

    .fallback-datetime div,
    .fallback-weather div {
        font-size: 20px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 5px;
    }

    .fallback-datetime small,
    .fallback-weather small {
        font-size: 12px;
        color: #718096;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.fallback-canvas {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.canvas-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.canvas-apps {
    display: flex;
    gap: 10px;
}

.app-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .app-item:hover {
        background: #e9ecef;
        transform: translateY(-3px);
    }

    .app-item i {
        font-size: 24px;
        color: #3498db;
    }

    .app-item span {
        font-size: 12px;
        font-weight: 600;
        color: #2c3e50;
        text-align: center;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-main-content {
        gap: 40px;
    }

    .benefits-image-container {
        min-height: 450px;
    }

    .benefits-right-column {
        margin-top: 120px;
    }
}

@media (max-width: 992px) {
    .benefits-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-image-container {
        min-height: 400px;
    }

    .benefits-title {
        font-size: 36px;
    }

    .benefits-right-column {
        margin-top: 0; /* Reset on mobile */
    }

    .benefits-left-column {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-title {
        font-size: 30px;
    }

    .benefits-subtitle {
        font-size: 16px;
    }

    .benefits-card {
        padding: 25px;
    }

    .benefits-card-icon {
        width: 50px;
        height: 50px;
    }

        .benefits-card-icon i {
            font-size: 24px;
        }

    .benefits-card-text h3 {
        font-size: 20px;
    }

    .fallback-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .benefits-title {
        font-size: 26px;
    }

    .benefits-card {
        padding: 20px;
        gap: 15px;
    }

    .benefits-card-text p {
        font-size: 14px;
    }

    .benefits-image-fallback {
        padding: 20px;
    }

    .canvas-apps {
        flex-direction: column;
    }

    .app-item {
        padding: 12px;
    }
}



/*  ===================== Footer ========================= */
/* ======= Footer Styles ======= */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.5), transparent);
}

/* Footer Top */
.footer-top {
    padding: 80px 0 60px;
    position: relative;
}

.footer-grid {
    display: grid;
    /*  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; */
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    background: var(--primary-color); /* linear-gradient(135deg, #3498db, #2c3e50); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
   /* max-width: 300px;*/
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .social-link:hover {
        background: #3498db;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .social-link i {
        font-size: 20px;
    }

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links li a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease;
        padding: 4px 0;
        display: inline-block;
        position: relative;
    }

        .footer-links li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #3498db;
            transition: width 0.3s ease;
        }

        .footer-links li a:hover {
            color: white;
            transform: translateX(5px);
        }

            .footer-links li a:hover::before {
                width: 20px;
            }

/* Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-text {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group {
    position: relative;
    display: flex;
}

    .input-group input {
        flex: 1;
        padding: 14px 20px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px 0 0 10px;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        font-size: 15px;
        transition: all 0.3s ease;
    }

        .input-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: rgba(255, 255, 255, 0.08);
        }

.subscribe-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .subscribe-btn:hover {
        background: #2980b9;
        transform: scale(1.05);
    }

    .subscribe-btn i {
        font-size: 20px;
    }

.newsletter-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.copyright p {
    font-size: 14px;
    color: #bdc3c7;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

    .legal-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        position: relative;
    }

        .legal-links a:hover {
            color: white;
        }

        .legal-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #3498db;
            transition: width 0.3s ease;
        }

        .legal-links a:hover::after {
            width: 100%;
        }

/* App Badges */
.app-badges {
    display: flex;
    gap: 15px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
}

    .app-badge:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        border-color: var(--primary-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .app-badge i {
        font-size: 24px;
        color: white;
    }

    .app-badge span {
        display: flex;
        flex-direction: column;
    }

.badge-text {
    font-size: 10px;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-store {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: #2980b9;
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }

    .footer-brand {
        grid-column: span 3;
    }

    .footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .legal-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links li a {
        font-size: 14px;
    }

    .app-badge {
        min-width: 160px;
        padding: 8px 12px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-description {
        text-align: left;
        margin: 0 auto;
    }

    .app-badges {
        flex-direction: column;
        width: 100%;
    }

    .app-badge {
        width: 100%;
        justify-content: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Current Year Script */
#current-year {
    font-weight: 600;
}


