/* Define Theme Variables */
:root {
    --color-primary: #673ab7;         /* Purple */
    --color-accent: #f04a24;          /* Red-orange */
    --color-background-light: #f4f4f4; /* Light background */
    --color-background-dark: #1a1a1a;  /* Dark background */
    --color-text-primary: #000000;    /* Primary text color */
    --color-text-secondary: #555555;  /* Secondary text color */
    --color-white: #ffffff;           /* White for text */
  }
  
 
/* Toggle Switch Styling */
#theme-toggle {
    position: relative;
    width: 59px; /* Adjusted width to accommodate "ark" */
    height: 29px;
    background-color: var(--color-text-secondary);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px;
    transition: background-color 0.3s;
    overflow: hidden;
}

/* Slider with "D" */
#theme-toggle .slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 25px;
    height: 25px;
    background-color: var(--color-white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

/* "ark" Text */
#theme-toggle .toggle-text {
    font-size: 14px;
    color: var(--color-white);
    margin-left: 25px; /* Position to the right of the slider */
    transition: color 0.3s;
}

/* Dark mode active */
body.dark-mode #theme-toggle {
    background-color: var(--color-accent);
}

body.dark-mode #theme-toggle .slider {
    transform: translateX(30px); /* Move slider to the right */
}

body.dark-mode #theme-toggle .toggle-text {
    color: var(--color-accent); /* Optional: change color in dark mode */
}

/* Sun and Moon icons */
#theme-toggle .icon {
    font-size: 14px;
    position: absolute;
    color: var(--color-white);
}
#theme-toggle .moon {
    left: 5px;
}
#theme-toggle .sun {
    right: 5px;
    opacity: 0;
}

body.dark-mode #theme-toggle .moon {
    opacity: 0;
}
body.dark-mode #theme-toggle .sun {
    opacity: 1;
}





  /* Base Styles */
  body {
    background-color: var(--color-background-light);
    color: var(--color-text-primary);
  }
  
  h1, h2, h3 {
    color: var(--color-primary);
  }
  
  /* Bootstrap Overrides */
  
  .btn {
    background-color: var(--color-accent) !important;
    color: var(--color-white) !important;
    border: none;
  }
  
  .btn:hover {
    background-color: var(--color-primary) !important;
  }
  
  /* List Items */
  .list-group-item {
    background-color: var(--color-background-light);
    color: var(--color-text-primary);
  }
  
  .dark-mode .list-group-item {
    background-color: var(--color-background-dark);
    color: var(--color-white);
  }
  
  /* Dark Mode Styles */
  .dark-mode {
    background-color: var(--color-background-dark);
    color: var(--color-white);
  }
  
  .dark-mode .navbar, .dark-mode .footer {
    background-color: var(--color-background-dark) !important;
    color: var(--color-white);
  }
  
  .dark-mode .btn {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
  }
  
  .dark-mode .btn:hover {
    background-color: var(--color-accent) !important;
  }
  
  /* Smooth Transition */
  body, .navbar, .btn, .list-group-item {
    transition: background-color 0.3s, color 0.3s;
  }
  

  .dark-mode-toggle {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between label and toggle */
}





/*  */
    

  /* Common Styles */
#course-card, .carousel-inner, .prince {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Adds shadow for a classic look */
    border: none; /* Removes border */
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

#image-container {
    position: relative;
}

#course-image {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

#play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

#course-details {
    padding: 1rem;
}

#course-title {
    font-size: 1.2rem;
    font-weight: bold;
}

#course-info {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

#career-support {
    display: inline-block;
    font-size: 0.9rem;
    color: #007bff;
    font-weight: bold;
}

#enrollment-info {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

#enrollment-info img {
    border-radius: 50%;
    margin-right: 0.2rem;
}

#course-buttons {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
}

#btn-brochure, #btn-view-course {
    font-size: 0.9rem;
    text-decoration: none;
    color: #fff;
    background-color: #740544;
    padding: 0.5rem 1rem;
    text-align: end;
}

#btn-brochure:hover, #btn-view-course:hover {
    background-color: #2c121d;
    text-decoration: none;
}

/* Navigation Styles */
.nav-link-1 {
    color: #fff;
    background-color: #000;
}

.nav-link-1:hover {
    color: #673ab7 !important;
    background-color: white !important;
}

.nav-link-1.active {
    color: #fff !important;
    background-color: #673ab7 !important;
}

/* Dark Mode Overrides */
.dark-mode #course-card, .dark-mode .carousel-inner, .dark-mode .prince {
    box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.1); /* Lighter shadow for dark mode */
    background-color: #1a1a1a; /* Dark background for cards */
}

.dark-mode #course-info {
    color: rgba(255, 255, 255, 0.7); /* Lighter text for dark mode */
}

.dark-mode #career-support {
    color: #4caf50; /* Adjusted color for dark mode */
}

.dark-mode #course-buttons {
    background-color: #333;
}

.dark-mode #btn-brochure, .dark-mode #btn-view-course {
    background-color: #9b006f;
}

.dark-mode #btn-brochure:hover, .dark-mode #btn-view-course:hover {
    background-color: #650048;
}

/* Navbar styles for dark mode */
.dark-mode .nav-link-1 {
    background-color: #333;
    color: #fff;
}

.dark-mode .nav-link-1:hover {
    color: #874465 !important;
    background-color: #444 !important;
}

.dark-mode .nav-link-1.active {
    background-color: #673ab7 !important;
}

/* Optional: Additional styling for dark mode */
.dark-mode #course-title {
    color: #fff;
}

      /*<!-- map -->*/
      
          /* Section 1: Map with bubbles */
          #india-map {
              background: url('https://digiwarms.com/assets/img/world-map.png') no-repeat center;
              background-size: contain;
              position: relative;
              width: 100%;
              height: 300px;
          }
  
          .bubble {
              position: absolute;
              width: 50px;
              height: 50px;
              border-radius: 50%;
              overflow: hidden;
              animation: float 6s infinite ease-in-out;
              opacity: 0;
              transition: opacity 1s ease-in-out;
          }
  
          .bubble img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              border-radius: 50%;
          }
  
          /* Bubble animation */
          @keyframes float {
              0% {
                  opacity: 0;
              }
  
              10% {
                  opacity: 1;
              }
  
              90% {
                  opacity: 1;
              }
  
              100% {
                  opacity: 0;
              }
          }
  
          /* Button styling */
          button {
              background-color: #007bff;
              color: white;
              padding: 15px 30px;
              font-size: 1em;
              border: none;
              cursor: pointer;
              border-radius: 5px;
          }
      
  
      /*<!-- testimonial -->*/
  
      
          /* Custom styles for the testimonials */
          .testimonials-wrap {
              padding: 50px 0;
          }
  
          .clents-title h1 {
              font-weight: bold;
              font-size: 36px;
              margin-bottom: 20px;
          }
  
          .single-testimonial-item {
              display: flex;
              align-items: center;
              margin: 15px 0;
          }
  
          .user-img img {
              border-radius: 50%;
              width: 80px;
              height: 80px;
              border: 2px solid #f3f3f3;
              margin-right: 20px;
          }
  
          .testimonial-body {
              flex: 1;
          }
  
          .user-name h3 {
              font-weight: bold;
              font-size: 20px;
              color: #ce191e;
          }
  
          .user-name span {
              display: block;
              color: #8e8e8e;
              font-size: 14px;
          }
  
          .owl-dots .owl-dot.active {
              background-color: #ce191e;
          }
      
  
  
  
  
  
  
  
  
  
  
   /*<!-- notification -->*/
      
          /* Custom Notification Bar Styling */
          .notification-bar {
              display: flex;
              align-items: center;
              /*background-color: #f5f5f5;*/
              /* border-radius: 8px; */
              overflow: hidden;
              height: 50px;
              /* position: fixed; */
              top: 0;
              left: 0;
              right: 0;
              z-index: 1050;
              box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          }
  
          .notification-label {
              background-color: #e74c3c;
              color: #fff;
              padding: 0 15px;
              font-weight: bold;
              display: flex;
              align-items: center;
              height: 100%;
              /* border-top-left-radius: 8px; */
              /* border-bottom-left-radius: 8px; */
              z-index: 2000;
          }
  
          .notification-label i {
              margin-right: 8px;
          }
  
          .scrolling-text {
              display: flex;
              align-items: center;
              white-space: nowrap;
              animation: scroll 15s linear infinite;
              color: #fff;
              /*background-color: #1e4a8a;*/
              padding: 0 20px;
              height: 100%;
              width: 100%;
              /* border-top-right-radius: 8px; */
              /* border-bottom-right-radius: 8px; */
          }
  
          /* Pauses the animation on hover */
          .scrolling-text:hover {
              animation-play-state: paused;
          }
  
          /* Scroll Animation */
          @keyframes scroll {
              from {
                  transform: translateX(100%);
              }
  
              to {
                  transform: translateX(-100%);
              }
          }
  
          /* Space for content below the fixed notification bar */
          body {
              padding-top: 60px;
          }
      
      
       /*<!-- mobile-phone -->*/
      
          /* General Styles */
  
  .text-white {
      color: #000;
  }
  
  .btn-pink {
      background-color: #ff007b;
      color: white;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 20px;
  }
  
  .btn-pink:hover {
      background-color: #e6006c;
  }
  
  
  
  .video-background-container {
      position: relative;
      width: 236px;
      height: 490px;
      overflow: hidden;
      border-radius: 45px;
  }
  
  /* Video Background Styling */
  .video-background {
      position: absolute;
      top: 2%;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  /* Mobile Frame Overlay Styling */
  .mobile-frame-overlay {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 1; /* Ensures the overlay is above the video */
  }
  
  /* Mobile Frame Image Styling */
  .mobile-frame-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
  }
  
  /* Tooltip Styling */
  .tooltip {
      position: absolute;
      left: 89%;
      background-color: rgb(235, 152, 152);
      color: black;
      font-weight: bold;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: transform 1s ease, opacity 0.5s ease;
      opacity: 0;
  }
  
  .tooltip:before {
      content: "➔";
      display: inline-block;
      background-color: #ff007b;
      color: white;
      border-radius: 50%;
      padding: 5px;
  }
  
  .tooltip span {
      color: #666;
      font-weight: normal;
  }
  
  /* Tooltip Positions */
  .tooltip-seo {
      top: 20%;
      animation: slideInUp 1s ease forwards;
  }
  
  .tooltip-email {
      top: 35%;
      animation: slideInUp 1s ease forwards;
  }
  
  .tooltip-paid {
      top: 50%;
      animation: slideInUp 1s ease forwards;
  }
  
  .tooltip-cro {
      top: 65%;
      animation: slideInUp 1s ease forwards;
  }
  
  @keyframes slideInUp {
      from {
          transform: translateX(-50%);
          opacity: 0;
      }
      to {
          transform: translateX(-100%);
          opacity: 1;
      }
  }
  
   
   /*why choose uss*/
    
          .text-content{
              text-align: justify !important;
          }
  
  
      
   
   
    
      .image-mirror {
        position: relative;
       
      }
  
      .image-mirror img {
        display: block;
        width: 100%;
      }
  
      .image-mirror::after {
        content: '';
        position: absolute;
        top: 90%; /* position directly below the image */
        left: 0;
        right: 0;
        height: 70%;
        background: url('https://digiwarms.com/assets/img/home-page/Earn-Money-Online.webp') no-repeat;
        background-size: 100% 100%;
        transform: scaleY(-1); /* flip vertically */
        opacity: 0.3; /* adjust for mirror effect */
        filter: blur(10px); /* slight blur to enhance shadow effect */
      }
    
  
  
  /*mutebutton*/
  
  
        .box {
            background-color: #2a2a2c;
            border-radius: 8px;
            padding: 20px;
            z-index: -10;
            box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
            /* White shadow */


        }

      


        /* Stylish Mute Button */
        .mute-button {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            outline: none;
        }

        .mute-button:hover {
            background-color: rgba(255, 0, 122, 0.7);
            /* Pink highlight on hover */
        }

        /* Icon Toggle Styling */
        .icon {
            display: none;
        }

        .muted.icon {
            display: inline-block;
        }

        .unmuted.icon {
            display: none;
        }

        /* Toggle Class for Unmuting */
        .unmuted-visible .muted {
            display: none;
        }

        .unmuted-visible .unmuted {
            display: inline-block;
        }
    


/*bubbels*/
 
        /* Custom styles */
      
        

        .blog-container {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        /* Individual letter styling */
        .letter {
            position: relative;
            margin-top: 100px;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff7eb3, #ff758c);
            color: #fff;
            font-size: 30px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

     
        
      
        /* Hover effect for letters */
        .letter:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 15px rgba(255, 255, 255, 0.5);
        }

        /* Responsive text styling */
        .banner-text {
            font-size: 1.2em;
            text-align: center;
            max-width: 90%;
            color: #ff7eb3;
        }
    

  
  
  
  