 /* Global & Theme Styles */
 body {
     margin: 0;
     padding: 0;
     background-color: #000;
     font-family: 'Fredoka', sans-serif;
     color: #fff;
 }

 /* Navbar Styles */
 .navbar {
     background-color: #000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 30px;
     border-bottom: 2px solid #333;
     position: relative;
     /* Added: Position relative for proper dropdown placement */
     z-index: 100;
     /* Added: Higher z-index to be on top of other content */
 }

 /* Logo Section */
 .navbar-logo {
     display: flex;
     align-items: center;
 }

 .navbar-logo img {
     height: 50px;
     width: auto;
     object-fit: contain;
     display: block;
 }

 /* Logo Pulse Animation */
 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }

 .navbar-logo:hover img {
     animation: pulse 1.5s infinite;
 }

 /* Navigation Links */
 .nav-links {
     display: flex;
     align-items: center;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .nav-links li {
     margin: 0 20px;
     position: relative;
     /* Added: Ensures dropdowns are positioned correctly relative to their parent li */
 }

 .nav-links a,
 .nav-links span {
     color: #fff;
     text-decoration: none;
     font-weight: 400;
     font-size: 18px;
     letter-spacing: 0.5px;
     display: flex;
     align-items: center;
     cursor: pointer;
     transition: color 0.3s ease;
     padding-bottom: 2px;
 }

 /* Icon Lift Animation for top-level links */
 .nav-links>li>a:hover i,
 .nav-links>li>span:hover i {
     transform: translateY(-3px);
     transition: transform 0.3s ease;
 }

 /* Underline Animation */
 .nav-links>li>a::after,
 .nav-links>li>span::after {
     content: '';
     width: 0%;
     height: 2px;
     background: #fff;
     display: block;
     margin: 2px 0 0;
     transition: width 0.3s ease;
 }

 .nav-links>li>a:hover::after,
 .nav-links>li>span:hover::after {
     width: 100%;
 }

 .nav-links a i,
 .nav-links span i {
     margin-right: 12px;
 }

 /* Dropdown Menu */
 .dropdown {
     position: absolute;
     top: 100%;
     left: -20px;
     background-color: #111;
     padding: 10px 0;
     border-radius: 5px;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
     list-style: none;
     display: none;
     min-width: 250px;
     transition: opacity 0.3s ease, transform 0.3s ease;
     /* Added: Smooth fade-in/out */
     opacity: 0;
     pointer-events: none;
     /* Added: Prevents interaction when hidden */
     transform: translateY(10px);
 }

 /* FIX: The main change is here. We apply 'hover' on the parent container (li)
nsure the dropdown stays visible as the mouse moves from the link to the sub-menu. */
 .nav-links li:hover .dropdown {
     display: block;
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0);
 }

 /* Dropdown Icon Animation (Fades Down) */
 .dropdown-icon {
     transition: transform 0.3s ease, opacity 0.3s ease;
     padding-left: 4px;
     padding-top: 3px;
 }

 .dropdown-toggle:hover .dropdown-icon {
     transform: translateY(5px);
 }

 .dropdown li {
     margin: 0;
 }

 .dropdown a {
     padding: 10px 20px;
     display: block;
     white-space: nowrap;
 }

 .dropdown a:hover {
     background-color: #222;
 }

 /* Right-side Actions (Buttons) */
 .nav-actions {
     display: flex;
     align-items: center;
 }

 /* Sign Up Button Animation: Left-to-Right Fill */
 .nav-actions .btn {
     position: relative;
     overflow: hidden;
     background-color: transparent;
     color: #fff;
     padding: 10px 20px;
     border: 2px solid #fff;
     border-radius: 5px;
     cursor: pointer;
     text-decoration: none;
     font-size: 18px;
     font-weight: 700;
     z-index: 1;
     transition: color 0.5s ease;
 }

 .nav-actions .btn i {
     z-index: 2;
     position: relative;
     transition: color 0.5s ease;
 }

 .nav-actions .btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     background-color: #fff;
     transition: width 0.5s ease;
     z-index: -1;
 }

 .nav-actions .btn:hover {
     color: #000;
 }

 .nav-actions .btn:hover::before {
     width: 100%;
 }

 /* Contact Icon Swap Animation */
 .nav-actions .contact-link {
     color: #fff;
     margin-right: 20px;
     text-decoration: none;
     font-size: 18px;
     display: flex;
     align-items: center;
     position: relative;
 }

 .nav-actions .contact-link .icon-headset {
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .nav-actions .contact-link .icon-phone {
     position: absolute;
     top: 0;
     left: 0;
     opacity: 0;
     transform: scale(0);
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .nav-actions .contact-link:hover .icon-headset {
     opacity: 0;
     transform: scale(0);
 }

 .nav-actions .contact-link:hover .icon-phone {
     opacity: 1;
     transform: scale(1);
 }

 .Contacts-icon {
     padding-right: 5px;
     padding-top: 5px;
 }

 /* Mobile Responsiveness */
 @media (max-width: 1130px) {
     .navbar {
         flex-wrap: nowrap;
         padding: 15px;
     }

     .nav-links,
     .nav-actions {
         display: none;
     }
 }

 /* Side NAVBAR */
 /* --- START: Mobile Sidebar Styles --- */
 .mobile-menu-toggle {
     display: none;
     position: fixed;
     margin-right: 20px;
     top: 20px;
     right: 30px;
     z-index: 9999;
     background-color: transparent;
     border: none;
     color: #fff;
     font-size: 24px;
     cursor: pointer;
 }

 .mobile-sidebar {
     position: fixed;
     top: 0;
     left: -300px;
     height: 100%;
     width: 280px;
     background-color: #000;
     padding: 20px;
     box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
     transition: left 0.3s ease-in-out;
     z-index: 999;
     overflow-y: auto;
     display: flex;
     flex-direction: column;
 }

 .mobile-sidebar.active {
     left: 0;
 }

 .sidebar-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-bottom: 20px;
     border-bottom: 1px solid #333;
     margin-bottom: 20px;
     gap: 15px;
 }

 .sidebar-header .header-logo img {
     height: 35px;
     width: auto;
     object-fit: contain;
 }

 .sidebar-header .header-profile {
     display: flex;
     align-items: center;
 }

 .sidebar-header .header-profile .sidebar-btn {
     position: relative;
     overflow: hidden;
     background-color: transparent;
     color: #fff;
     padding: 7px 15px;
     border: 2px solid #fff;
     border-radius: 5px;
     cursor: pointer;
     text-decoration: none;
     font-size: 16px;
     font-weight: 700;
     z-index: 1;
     transition: color 0.5s ease;
     white-space: nowrap;
 }

 .sidebar-header .header-profile .sidebar-btn i {
     z-index: 2;
     position: relative;
     transition: color 0.5s ease;
 }

 .sidebar-header .header-profile .sidebar-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 0%;
     background-color: #fff;
     transition: width 0.5s ease;
     z-index: -1;
 }

 .sidebar-header .header-profile .sidebar-btn:hover {
     color: #000;
 }

 .sidebar-header .header-profile .sidebar-btn:hover::before {
     width: 100%;
 }

 .sidebar-menu-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .sidebar-menu-list li {
     margin-bottom: 10px;
 }

 .sidebar-menu-item {
     display: flex;
     align-items: center;
     padding: 12px 15px;
     color: #fff;
     text-decoration: none;
     border-radius: 8px;
     transition: background-color 0.3s ease, color 0.3s ease;
 }

 .sidebar-menu-item:hover,
 .sidebar-menu-item.active {
     background-color: #4318FF;
     color: #fff;
 }

 .sidebar-menu-item:hover i,
 .sidebar-contact-link:hover i {
     transform: translateY(-3px);
     transition: transform 0.3s ease;
 }

 .sidebar-menu-item i {
     margin-right: 15px;
     font-size: 20px;
 }

 .sidebar-dropdown-toggle {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .sidebar-dropdown-icon {
     font-size: 16px;
     transition: transform 0.3s ease;
 }

 .sidebar-nested-menu {
     list-style: none;
     padding: 0;
     margin-top: 5px;
     margin-left: 20px;
     display: none;
     max-height: 180px;
     overflow-y: auto;
 }

 .sidebar-nested-menu::-webkit-scrollbar {
     width: 6px;
     background-color: #333;
     border-radius: 10px;
 }

 .sidebar-nested-menu::-webkit-scrollbar-thumb {
     background-color: #4318FF;
     border-radius: 10px;
 }

 .sidebar-nested-item {
     display: flex;
     align-items: center;
     padding: 8px 15px;
     color: #888;
     text-decoration: none;
     border-radius: 8px;
     transition: color 0.3s ease;
 }

 .sidebar-nested-item i {
     margin-right: 10px;
 }

 .sidebar-nested-item:hover {
     color: #fff;
 }

 .sidebar-contact-link {
     display: flex;
     align-items: center;
     padding: 12px 15px;
     color: #fff;
     text-decoration: none;
     border-radius: 8px;
     transition: background-color 0.3s ease, color 0.3s ease;
 }

 .sidebar-contact-link:hover {
     background-color: #4318FF;
     color: #fff;
 }

 .sidebar-contacts-icon {
     position: relative;
     width: 20px;
     height: 20px;
     margin-right: 15px;
 }

 .sidebar-contacts-icon .sidebar-icon-headset {
     position: absolute;
     top: 0;
     left: 0;
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .sidebar-contacts-icon .sidebar-icon-phone {
     position: absolute;
     top: 0;
     left: 0;
     opacity: 0;
     transform: scale(0);
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .sidebar-contact-link:hover .sidebar-icon-headset {
     opacity: 0;
     transform: scale(0);
 }

 .sidebar-contact-link:hover .sidebar-icon-phone {
     opacity: 1;
     transform: scale(1);
 }

 .contacts-text {
     font-size: 18px;
     letter-spacing: 0.5px;
 }

 /* Close button ki position fix ki */
 .sidebar-bottom {
     padding-top: 20px;
     border-top: 1px solid #333;
     margin-top: 20px;
     text-align: center;
 }

 .sidebar-bottom-close-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     width: 100%;
     background: none;
     border: none;
     color: #fff;
     font-size: 18px;
     cursor: pointer;
     padding: 10px 15px;
 }

 .sidebar-bottom-close-btn:hover {
     background-color: #1a1a1a;
 }

 @media (max-width: 1130px) {

     .navbar .nav-links,
     .navbar .nav-actions {
         display: none;
     }

     .mobile-menu-toggle {
         display: block;
     }

     .sidebar-bottom-close-btn {
         position: static;
         transform: none;
     }
 }

 /* --- END: Mobile Sidebar Styles --- */
 /*=================*/

 /*Services section*/

 .services-main {
     margin-top: -40px !important;
     padding: 0px 20px;
     text-align: center;
     margin: 0;
     font-family: 'Fredoka', sans-serif;
     background: #000;
     color: #fff;
 }

 h2 {
     font-size: 2.5rem;
     margin-bottom: 60px;


 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: auto;

 }

 .service-card {
     background: #111;
     padding: 40px 25px;
     border-radius: 20px;
     box-shadow: 0 0 0 rgba(255, 255, 255, 0.1);
     /* Start no shadow */
     transition: all 0.35s ease;
     opacity: 0;
     transform: translateY(40px);
 }

 /* Hover lift + full spread shadow */
 .service-card:hover {
     transform: translateY(-20px) scale(1.05);
     box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
     /* shadow charo taraf */
 }

 .service-card.show {
     opacity: 1;
     transform: translateY(0);
     transition: all 0.6s ease;
 }

 /* Icon animation on hover */
 .icon {
     background: #fff;
     color: #000;
     width: 70px;
     height: 70px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     margin: 0 auto 25px;
     transition: transform 0.4s ease;
 }

 .service-card:hover .icon {
     transform: rotate(-12deg) scale(1.15);
 }

 .service-card h3 {
     font-size: 1.3rem;
     margin-bottom: 10px;
 }

 .service-card p {
     font-size: 0.9rem;
     color: #ccc;
     margin-bottom: 25px;
 }

 /* Creative button */
 .btn {
     position: relative;
     background: transparent;
     color: #fff;
     border: 2px solid #fff;
     padding: 10px 25px;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     overflow: hidden;
     z-index: 1;
     transition: color 0.3s ease;
 }

 .btn::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 0%;
     height: 100%;
     background: #fff;
     z-index: -1;
     transition: width 0.3s ease;
 }

 .btn:hover {
     color: #000;
 }

 .btn:hover::before {
     width: 100%;
 }

 /*PROCESS SECTION*/

 .process-sec {
     margin: 20px;
     font-family: 'Fredoka', sans-serif;
     color: #fff;
     padding: 80px 20px;
     text-align: center;
 }

 h2 {
     text-align: center;
     font-size: 2.8rem;
     margin-bottom: 15px;
     font-weight: 700;
     color: #fff;
 }

 .subtitle {
     font-size: 1rem;
     color: #bbb;
     max-width: 650px;
     margin: auto;
     margin-bottom: 60px;
     line-height: 1.5;
 }

 .process-container {
     display: flex;
     justify-content: space-around;
     align-items: center;
     flex-wrap: wrap;
     gap: 40px;
     position: relative;
 }

 /* Connector Line */
 .process-container::before {
     content: "";
     position: absolute;
     top: 70px;
     /* middle of circles */
     left: 15%;
     right: 15%;
     height: 4px;
     background: rgba(255, 255, 255, 0.2);
     z-index: 0;
 }

 /* Circle step */
 .circle-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     width: 280px;
     position: relative;
     z-index: 1;
 }

 .circle {
     width: 140px;
     height: 140px;
     border-radius: 50%;
     background: #111;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     font-weight: 600;
     position: relative;
     margin-bottom: 25px;
     box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
     color: #fff;
 }

 /* Circular progress border */
 .circle::before {
     content: "";
     position: absolute;
     inset: -8px;
     border-radius: 50%;
     border: 10px solid transparent;
     border-top: 10px solid #fff;
     border-left: 10px solid #fff;
     transform: rotate(0deg);
     animation: progressAnim 6s linear infinite;
 }

 @keyframes progressAnim {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .circle-step h3 {
     font-size: 1.2rem;
     margin-bottom: 10px;
     color: #fff;
 }

 .circle-step p {
     font-size: 0.9rem;
     color: #aaa;
     margin-bottom: 20px;
 }

 /* Button */
 .btn-pro {
     padding: 10px 25px;
     border: 2px solid #fff;
     border-radius: 50px;
     color: #fff;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
     background: transparent;
 }

 .btn-pro:hover {
     background: #fff;
     color: #111;
     transform: translateY(-3px);
     box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
 }

 /* Slider dots */
 .dots {
     margin-top: 50px;
     display: flex;
     justify-content: center;
     gap: 10px;
 }

 .dot {
     width: 10px;
     height: 10px;
     background: #666;
     border-radius: 50%;
     transition: 0.3s;
 }

 .dot.active {
     background: #fff;
     width: 25px;
     border-radius: 20px;
 }

 /* Responsive */
 @media(max-width: 900px) {
     .process-container {
         flex-direction: column;
     }

     .process-container::before {
         display: none;
         /* hide line in mobile */
     }
 }