@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 
    *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            transition: background-color 0.3s, color 0.3s;
        }
/*        Color thimes*/
    :root{
            --main-bg-color: #f5f7fa;               /* Light background */
            --ather-bg-color: #e1e8ed;              /* Secondary light background */
            --button-color: #3498db;                /* Brighter blue button */
            --button-border-color: #2980b9;         /* Stronger border for buttons */
            --online-color: #3adb76;                /* Green online indicator */
            --link-color: #2c7bb6;                  /* Slightly darker link */
            --text-color: #1e1e1e;                  /* Dark readable text */
            --message-color: #555555;               /* Softer gray for messages */
            --yes-color: #0077ff;
            --main-color: #87ceeb;
            --progress-bar: #2980b9;                /* Blue progress bar */
            --eo_play-btn-bg: rgba(255, 255, 255, 0.85); /* Light translucent background */
            --io_play-btn-border: #cbd5e0;          /* Light border */
            --io_play-a-shadow: rgba(0, 0, 0, 0.1); /* Soft dark shadow */
            --io_play-b-shadow: rgba(0, 0, 0, 0.05);/* Even softer shadow */


            --dark-bg: #292828;
            --light-bg: #e0e6f7;
            --primary-text: #333;
            --secondary-text: #555;
            --accent: #0077ff;
            --card-bg: #fff;
            --glass-bg: rgba(255, 255, 255, 0.15);
            --btn-gradient: linear-gradient(45deg, #d8e6f3, #0077ff, #d8e6f3);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --arrows: #2d3436;
            --glass-border: rgba(255, 255, 255, 0.05);
            --big-border: rgb(218 219 219 / 16%);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --arrows:#6262639c;
            --main-text: #000;
            --list-text: #424249;
    }

        .dark-mode {

    --main-bg-color: #1e1d20;
    --ather-bg-color: #545454;
    --button-color: #98d4df;
    --button-border-color: #87ceeb;
    --online-color: #ebff07;
    --link-color: #bee3ed;
    --text-color: #fff;
    --message-color: #8e8c8c;
/*    --yes-color: #acff9c;*/
    --yes-color: #6c5ce7;
    --main-color: #87ceeb;
    --progress-bar: #a2e4ff;
    --eo_play-btn-bg: rgba(60, 64, 67, 0.800);
    --io_play-btn-border:#bfd8e2;
    --io_play-a-shadow: rgba(60, 64, 67, 0.3);
    --io_play-b-shadow: rgba(60, 64, 67, 0.15);



            --card-bg: #292828;
            --primary-text: #f5f5f5;
            --list-text: #9a9ca3;
            --light-bg: #333333;
            --main-text: #fff;
            --main-bg-color: #bfd8e2;
            --dark-bg: #222222;
            --secondary-text: #636e72;
            --accent: #6c5ce7;
            --accent-light: #a29bfe;
            --btn-gradient: linear-gradient(45deg, #6c5ce7, #a29bfe);
            --glass-bg: rgba(30, 30, 30, 0.25);
            --glass-border: rgba(255, 255, 255, 0.05);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --arrows:#6262639c;
            --big-border: rgba(255, 255, 255, 0.05);
        }

        body {
            background-color: var(--light-bg);
            color: var(--primary-text);
    }

 /* Loading anamimation Page*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-bg-color);
    transition: opacity 0.78s, visibility 0.78s;
    z-index: 10000000;
}
.loader-hidden{
    opacity: 0;
    visibility: hidden;
}
.loader_brand-container{
    position: absolute;
    width: 60%;
    height: 60%;
    bottom: 0;
    display: flex;
    justify-content: center;
}
.loader_brand{
    margin-top: -36%;
    scale: 20%;
    user-select: none;
}
.loader_footer{
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader_footer-text{
    position: absolute;
    font-size: 15px;
    color: var(--message-color);
    margin-top: -40px;
    font-weight: 600;
    font-family:'Jost', sans-serif;
    scale: 102%;
}
.loader_footer-brand{
    position: absolute;
    font-size: 20px;
    font-weight: 600;
    scale: 102%;
}
.loader_footer-brand a{
    position: relative;
    text-decoration: none;
    color: var(--link-color);
    font-family:'Poppins', sans-serif;
}
.loader::before{
    position: absolute;
    content: "";
    top: 0;
    height:  5px;
    width: 100%;
    background: linear-gradient( to left, 
                var(--yes-color), var(--main-color),
                var(--yes-color), var(--main-color),
                var(--yes-color), var(--main-color),
                var(--yes-color), var(--main-color));

    background-size: 500%;
    animation: loader 2.5s linear infinite;
}
@keyframes loader {
     0%{
    background-position: 0 100%;
  }
   50%{
    background-position:  100% 0;
  }
   100%{
    background-position: 0 100%;
  }
   150%{
    background-position:  100% 0;
  }
}
.loader_footer-brand{
  font-family: 'Jost', sans-serif;
}

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            border: 3px solid var(--glass-border);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) ;
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }






/* Website's landing */
        .dark-mode body {
            background-color: var(--dark-bg);
        }
         header {
            position: fixed;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1400px;
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--glass-border);
            z-index: 1000;
            transition: var(--transition);
        }
        header span{
        	font-family: 'Poppins', sans-serif;
        }
        .dark-mode header {
            background-color: var(--dark-bg);
        }

       .logo {
           
/*            color: var(--accent);*/
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
/*            background: red;*/
/*            color: red;*/
        }
        .logo-text{
            font-size: 1.7rem;
            font-weight: 800;
/*            color: var(--btn-gradient);*/
            font-family: 'Jost', sans-serif;
            background: var(--btn-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            line-height: 1px;
        }

        nav a {
           text-decoration: none;
            color: var(--primary-text);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: var(--transition);
            font-family: 'Jost', sans-serif;
        }
        nav a:hover {
            color: var(--accent);
            background: rgba(108, 92, 231, 0.1);
        }
        nav a.active {
           color: var(--accent);
           background: rgba(108, 92, 231, 0.1);
           font-weight: 600;
       }

        .top-bt_getStarted {
            padding: 0.8rem 1.5rem;
            background: var(--btn-gradient);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .top-bt_getStarted:hover {
            transform: translateY(-3px);
            box-shadow: 0px 0px 3px 3px rgba(108, 92, 231, 0.3);
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-text);
            cursor: pointer;
            transition: var(--transition);
            margin-left: 1rem;
        }

        .theme-toggle:hover {
            color: var(--accent);
            transform: rotate(30deg);
        }


  /* Responsive Design */
        @media (max-width: 992px) {
            header {
                padding: 0.8rem 1.5rem;
            }
            
            nav ul {
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .steps::before {
                display: none;
            }
            
            .plan.popular {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            header {
                top: 10px;
                padding: 0.8rem 1rem;
                border-radius: 30px;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .logo i {
                font-size: 1.8rem;
            }
            
            nav ul {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn-group {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
        }




/* hero section page*/
        .hero {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            text-align: center;
            background: var(--light-bg);
        }
        .dark-mode .hero {
            background: var(--dark-bg);
        }
       .hero .hero-content{
        	position: absolute;
        	width: 45%;
        	left: 10px;
        }
        .hero .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
/*            font-family: 'Goldman', sans-serif;*/
            font-family: 'Poppins', sans-serif;
        }

        .hero .hero-content p {
            font-size: 1.2rem;
            color: var(--secondary-text);
            max-width: 800px;
            margin: 0 auto 2rem;
            padding: 11px;
            margin-left: 55px;
            text-align: left;
        }

        .hero .btn.get {
           border-width: 0;
        }
        .hero .btn {
            border: 1px solid rgba(0, 119, 255, 0.2);
            transition: var(--transition);

            }
        .hero .btn:hover {
             transform: translateY(-5px);
            border-color: var(--card-bg);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

            }
        .btn {
            padding: 0.8rem 2rem;
            background: var(--btn-gradient);
            background-size: 200% auto;
            color: white;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.5s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.5rem;
        }

        .btn i {
            font-size: 1.2rem;
        }

        .btn:hover {
            background-position: right center;
        }




    /*    right side of hero*/
.video-cover{ 
  position: absolute;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100vh;
  width: 55%;
  top: 0;
  right: 0;
}

/*video frame*/
video{
 position: absolute;
 background: var(--main-bg-color);
 width: 780px; 
 height: 440px;
 scale: 85%;
 color: var(--progress-bar);
 clip-path: polygon(0% 13%, 2% 10%, 2% 6%, 4% 2%, 9% 2%, 11% 0%,
  39% 0%, 40% 1%, 49% 1%, 50% 0%, 72% 0%, 74% 2%, 84% 2%, 100% 31%,
   100% 100%, 100% 100%, 50% 100%, 49% 99%, 40% 99%, 39% 100%, 
   18% 100%, 14% 93%, 5% 93%, 1% 84%, 1% 55%, 0% 53%);
}
.video-cover::before{
  content: "";
  position: absolute;
  height: 440px;
  width: 780px;
  scale: 85%;
  backdrop-filter: blur(10px);
  background: var(--io_play-btn-border);
  border: 2px solid var(--io_play-btn-border);
  clip-path: polygon(7% 100%, 0% 85%, 0 3%, 2% 0, 83% 0, 100% 31%, 100% 100%);
  }
.video-cover::after{
  content: "";
  position: absolute;
  height: 440px;
  width: 780px;
  scale: 85%;
  backdrop-filter: blur(10px);
  background: var(--io_play-btn-border);
  border: 2px solid var(--io_play-btn-border);
  clip-path: polygon(84% 0, 100% 29%, 100% 14%, 92% 0);  
}
@layer base {
  video::-webkit-media-controls {
    position: relative;
  }
  video::-webkit-media-controls-volume-slider {background: red}

  video::-webkit-media-controls-volume-slider-container{display: none; }
  video::-webkit-media-controls-volume-slider{display: none;
  }
  video::-webkit-media-controls-mute-button{display: none;}

/* Hide all control */
video::-webkit-media-controls-timeline {
    display: none;
  }
 video::-webkit-media-controls-current-time-display,
 video::-webkit-media-controls-time-remaining-display{
   font-size: 16px;
   margin-top: 30px;
   transform: translate(540px, 0px);
 }
  video::-webkit-media-controls-fullscreen-button {
    margin-top: -40px;
    scale: 115%;
  }
  video::-webkit-media-controls-toggle-closed-captions-button{
    margin-top: -40px;
    scale: 115%;
  }
  video::-webkit-full-page-media::-webkit-media-controls
{
  display: none;
}
}
video::-webkit-media-controls {
  display: none !important;
}
video {
  outline: none;
}
.video-cover label{
  padding: 10px 20px;
  position: absolute;
  height: 24px;
  color: var(--main-color);
  text-align: center;
  cursor: pointer;
  margin-top: 350px;
  margin-left: -550px;
  scale: 70%;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-cover label::after{
  position: absolute;
  content: "";
  background: #333;
  height: 100%;
  width: 90px;
  width: 100%;
  transform: skew(-20deg);
  font-family: 'Jost', sans-serif;
  z-index: -1;
}
.video-cover label:hover{
  color: var(--text-color);
  scale: 0.8;
}
.video-cover label:active{
  color: var(--text-color);
}
.play{
  position: absolute;
  display: none;
}
.video-cover #play{
  position: relative;
  background: red;
  object-fit: cover;
  appearance: cover;
}
.video-cover:hover
.play{
  position: absolute;
  display: block;

  padding: 10px 25px;
  color: var(--progress-bar);
  background: var(--eo_play-btn-bg);
  border-radius:5px;
  cursor: pointer;
  margin-top: -20px;
 clip-path: polygon(0% 13%, 2% 10%, 2% 6%, 4% 2%, 9% 2%, 11% 0%, 39% 0%, 
    40% 1%, 49% 1%, 50% 0%, 72% 0%, 74% 2%, 84% 2%, 100% 31%, 100% 100%, 
    100% 100%, 50% 100%, 49% 99%, 40% 99%, 39% 100%, 18% 100%, 14% 93%, 
    5% 92%, 1% 84%, 1% 55%, 0% 53%);
}


   /* Scroll indicator button - only on first page */
        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            right: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 80px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            border: 3px solid var(--glass-border);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 100;
            opacity: 1;
            visibility: visible;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .scroll-indicator.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .scroll-indicator .text-scroll {
            font-family: 'Poppins', sans-serif;
            font-size: 0.7rem;
            color: var(--primary-text);
            margin-bottom: 5px;
        }

        .scroll-indicator {
            animation: bounce 2s infinite;
        }




















/* Features Section */
        .features {
            padding: 5rem 5%;
            background-color: var(--card-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--secondary-text);
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .feature-card {
            background-color: var(--card-bg);
            border: 10px solid var(--big-border);
            border-radius: 30px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
/*            border: 3px solid rgba(0, 119, 255, 0.1);*/
        }

        .feature-card:hover {
            transform: translateY(-5px);
/*            border-color: var(--accent);*/
            box-shadow: 0 6px 20px var(--big-border);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }
        .feature-icon i{
           background: rgba(0, 119, 255, 0.2);
           padding: 15px 16px;
           border-radius: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feature-card h3 i {
            color: var(--accent);
        }

        .feature-card p {
            color: var(--secondary-text);
        }




/* about page*/

.about {
    padding: 80px 20px;
    background-color: var(--light-bg);
    color: var(--primary-text);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1 1 500px;
    font-family: 'Jost', sans-serif;
}

.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.about-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
}






 /* How It Works Section */
        .how-it-works {
            padding: 5rem 5%;
            background-color: var(--light-bg);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

        .step {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--arrows);
            position: relative;
            transition: var(--transition);
        }

        .step:hover {
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            background-color: var(--arrows);
            right: -20px;
            top: 53%;
            width: 40px;
            height: 2px;
        }

        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .step h3 i {
            color: var(--accent);
        }

        .step p {
            color: var(--secondary-text);
        }






    /* Pricing Section */
        .pricing {
            padding: 5rem 5%;
            background-color: var(--card-bg);
        }

        .plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
/*            box-shadow: var(--shadow);*/
        }
        .pricing {
            padding: 5rem 5%;
            text-align: center;
        }

        .pricing h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .plan {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
/*            border: 2px solid transparent;*/
            border: 1px solid var(--big-border);
        }

        .dark-mode .plan {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .plan.popular {
            border: 2px solid var(--accent);
            position: relative;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--btn-gradient);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .plan h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: var(--accent);
            font-family: 'Jost', sans-serif;
        display: none;
        }
    .price.monthly {
        display: block;

    }
    .price span {
            font-size: 1rem;
            color: var(--secondary-text);
        }


        .plan ul {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .plan li {
            margin-bottom: 0.8rem;
            color: var(--list-text);
            position: relative;
            padding-left: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .plan li i {
            color: var(--accent);
        }
        .plan .btn{
        	position: relative;
        	padding: 0.8rem 2rem;
            background: var(--btn-gradient);
            background-size: 200% auto;
            color: white;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.5s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            box-sizing: border-box;
            transition: var(--transition);
            bottom: 0;
        }
        .plan .btn:hover{
            transform: translateY(-50px);
            transition: var(--transition);
        }
        .plan .btn:focus{
            transform: scale(1.2);
        }







         /* Billing Toggle */
    .billing-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .billing-toggle span {
        font-weight: 600;
        color: var(--main-text);
    }

    .discount-badge {
        background: var(--accent);
        color: white;
        padding: 0.2rem 0.5rem;
        border-radius: 15px;
        font-size: 0.8rem;
        margin-left: 0.3rem;
        margin-bottom: 1rem;
        font-family: 'Jost', sans-serif;

    }

    /* Switch styling */
    .switch {
        position: relative;
        display: inline-block;
        margin-top: 5px;
        width: 60px;
        height: 28px;
    }

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #7376794f;
        transition: .4s;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background: white;
        transition: .4s;
    }

    input:checked + .slider {
        background: var(--accent);
    }

    input:checked + .slider:before {
        transform: translateX(30px);
    }

    .slider.round {
        border-radius: 34px;
    }

    .slider.round:before {
        border-radius: 50%;
    }
    .price.monthly {
        display: block;
    }








        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-family: 'Jost', sans-serif;
      }
      .footer-column h3:nth-child(1){
      	   font-family: 'Poppins', sans-serif;
      }
      .footer-column p{
      	   font-family: 'Jost', sans-serif;
      }

        .footer-column h3 i {
            color: var(--accent-light);
            font-family: 'Jost', sans-serif;
      }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            font-family: 'Jost', sans-serif;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-column a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-column i {
            width: 1.2rem;
        }

        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Jost', sans-serif;
            gap: 0.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }

















/*        Contacts*/

        .contact {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-text);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--secondary-text);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .contact-info {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
        }

        .contact-info h3 {
             font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary-text);
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
/*            font-weight: 800;*/
            gap: 10px;
        }

        .contact-info ul {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-info i {
            font-size: 1.3rem;
            color: var(--accent);
            margin-top: 3px;
        }

        .contact-info span {
            font-size: 1rem;
            color: var(--secondary-text);
        }

        .contact-form {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
        }

        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary-text);
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
/*            font-weight: 800;*/
            gap: 10px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-text);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(0, 050, 255, 0.1);
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: var(--btn-gradient);
            color: white;
            border: none;
            padding: 12px 25px;
            font-family: 'Poppins', sans-serif;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            width: 40%;
            float: right;
        }

        .submit-btn:hover {
/*            background: #0066cc;*/
            transform: translateY(-2px);
            opacity: 20px;
        }

        /* Google Maps Container */
        .map-container {
            margin-top: 40px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            height: 400px;
        }

        #google-map {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* Dark Mode */
        /*.dark-mode {
            --card-bg: #292828;
            --primary-text: #f5f5f5;
            --light-bg: #333333;
            --secondary-text: #ccc;
            --accent: #6c5ce7;
            --btn-gradient: linear-gradient(45deg, #6c5ce7, #a29bfe);
        }*/

        .dark-mode .contact-info,
        .dark-mode .contact-form {
            background-color: var(--card-bg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .dark-mode .form-group input,
        .dark-mode .form-group textarea {
            background-color: #3d3d3d;
            border-color: #555;
            color: #f5f5f5;
        }