/* CSS Variables for consistent styling */
@import url("https://fonts.googleapis.com/css?family=Roboto");

/* CSS Variables for consistent styling */
:root {
    /* Colors */
    --primary-color: #15f13a;
    --primary-hover: #7ff115;
    --text-color: #f0e1e1;
    --text-light: #ffffff;
    --text-dark: #ede6e6;
    
    /* Backgrounds */
    --bg-light: rgba(3, 3, 3, 0.75); /* Increased transparency for more glass effect */
    --bg-light-alt: rgba(0, 0, 0, 0.75); /* Increased transparency for more glass effect */
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 10px;
    --box-shadow: 0px 4px 30px rgba(30, 221, 16, 0.144); /* Softer shadow for glass effect */
    --box-shadow-hover: 0px 4px 35px rgba(8, 164, 31, 0.521); /* Softer shadow for glass effect */
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base Reset and Universal Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-light); /* Apply glass effect background */
    -webkit-backdrop-filter: blur(15px); /* Increased blur for more glass effect */
    backdrop-filter: blur(15px); /* Increased blur for more glass effect */
}

i {
    margin-right: 10px;
}

header {
  position: absolute;
  top: 10;
  width: 100%;
  background: rgba(24, 23, 23, 0.034); /* Increased transparency for more glass effect */
  box-shadow: 0px 4px 30px rgba(5, 162, 68, 0.263); /* Softer shadow for glass effect */
  -webkit-backdrop-filter: blur(15px); /* Increased blur for more glass effect */
  backdrop-filter: blur(15px); /* Increased blur for more glass effect */
  z-index: 1000;
  padding: 10px 20px;
  border: px solid rgba(240, 233, 233, 0.18);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 20px;
}

.logo-image {
    width: auto;
    height: 80px;
    flex-shrink: 0;
    transition: height 0.3s ease;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Toggle Button Styling */
.toggle-button {
    display: none;
    width: 44px;
    height: 44px;
    font-size: 24px;
    cursor: pointer;
    color: #065f1c;
    background: transparent;
    border: 2px solid #13e764;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1005;
}

.toggle-button:hover {
    background: rgba(235, 239, 236, 0.1);
    transform: scale(1.05);
}

.toggle-button i {
    transition: transform 0.3s ease;
}

.toggle-button:hover i {
    transform: scale(1.1);
}

/* Navbar and Dropdown Styling */
.navbar {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
}

.navbar li {
    margin: 0 15px;
    position: relative;
}

.navbar a {
    text-decoration: none;
    font-weight: 500;
    color: #ece8e8;
    transition: all 0.3s;
    padding: 10px;
    border-radius: 10px;
    display: block;
}

.navbar a:hover {
    background: rgba(7, 228, 99, 0.863);
    box-shadow: 0px 4px 15px rgba(41, 221, 14, 0.6);
    transform: scale(1.05);
    border-radius: 8px;
    color: rgb(243, 245, 248);
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(24, 23, 23, 0.75); /* Increased transparency for more glass effect */
    box-shadow: 0px 4px 30px rgba(12, 182, 60, 0.568); /* Softer shadow for glass effect */
    border-radius: 10px;
    padding: 10px;
    width: 220px;
    z-index: 1000;
}

.dropdown li {
    margin: 5px 0;
    padding: 0;
}

.dropdown a {
    color: #f0e8e8ce;
    padding: 8px 12px;
    display: block;
    transition: background 0.4s;
}

.dropdown a:hover {
    background: rgba(4, 228, 97, 0.788);
    box-shadow: 0px 4px 15px rgba(12, 187, 12, 0.6);
    border-radius: 8px;
    color: rgba(19, 18, 18, 0.671);
}

.navbar li:hover .dropdown {
    display: block;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;
    }

    .toggle-button {
        display: flex;
    }

    /* Mobile modal menu styles */
    nav {
        position: fixed;
        top: 200px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
        max-height: 80vh;
        background: rgba(0, 0, 0, 0.534); /* Increased transparency for more glass effect */
        border-radius: 15px;
        box-shadow: 0 5px 30px rgba(13, 173, 29, 0.788); /* Softer shadow for glass effect */
        z-index: 1001;
        overflow-y: visible;
        opacity: 1;
        visibility: HIdden;
    }

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        overflow: visible;
    }

    nav.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar {
        background: rgba(20, 20, 20, 0.753); /* Increased transparency for more glass effect */
        position: static;
        z-index: 1;
        display: flex;
        flex-direction: column;
        padding: 30px;
        height: auto;
        width: 100%;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 -5px 25px rgba(238, 234, 234, 0.39);
    }

    .navbar li {
        width: 100%;
        text-align: center;
        overflow: visible;
    }
}
/* Content Styles */
.content {
    padding: 40px;
    color: var(--text-color);
    text-align: center;
    opacity: 0;
    transform: translateY(100vh);
    transition: var(--transition);
}

.section {
    padding: 50px;
    background: rgba(0, 0, 0, 0.75); /* Increased transparency for more glass effect */
    margin: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    -webkit-backdrop-filter: blur(15px); /* Increased blur for more glass effect */
    backdrop-filter: blur(15px); /* Increased blur for more glass effect */
    transition: var(--transition);
    border: 1px solid rgba(39, 37, 37, 0.61);
}

.section:hover {
    transform: scale(1.02);
    box-shadow: var(--box-shadow-hover);
}

.section img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.modal {
    display: none; 
    position: fixed; 
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1005; 
    align-items: flex-start; /* Change from center to flex-start */
    padding-top: 50px; /* Add some top padding */
    overflow-y: auto; /* Enable scrolling */
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(22, 22, 22, 0.486); /* Increased transparency for more glass effect */
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    position: relative; /* Add positioning context */
    margin: 0 auto; /* Center horizontally */
    max-height: 80vh; /* Limit height on mobile */
    overflow-y: auto; /* Enable content scrolling */
    box-shadow: 0 5px 20px rgba(9, 150, 23, 0.2); /* Softer shadow for glass effect */
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.modal-header h3 {
    margin: 0;
}

.modal-body ul {
    list-style: disc;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%; /* Adjusted width for mobile */
        margin: 20px auto;
        padding: 15px;
    }
    
    .modal {
        padding-top: 20px;
    }
}

.offer-link {
    display: inline-block;
    background: #e2dddd;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.offer-link:hover {
    background: #08ca19;
}

.special-offer-btn {
    background: linear-gradient(45deg, #21b02d, #6dd5ed);
    color: white;
    padding: 5px 8px; /* Reduced padding for a smaller button */
    border-radius: 10px; /* Reduced border-radius for a smaller button */
    border: none;
    font-weight: 100;
    font-size: 0.7rem; /* Reduced font size for a smaller button */
    margin-left: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2); /* Reduced shadow for a smaller button */
    display: inline-flex;
    align-items: center;
    gap: 4px; /* Reduced gap for a smaller button */
}

.special-offer-btn:hover {
    transform: translateY(-1px); /* Reduced hover effect */
    box-shadow: 0 2px 6px rgba(5, 241, 56, 0.3); /* Reduced shadow on hover */
    background: linear-gradient(45deg, #1c7a94, #5bc0de);
}

.special-offer-btn .btn-text {
    position: relative;
    top: 1px;
}

.special-offer-btn i {
    font-size: 0.6rem; /* Reduced icon size for a smaller button */
    transition: transform 0.3s ease;
}

.special-offer-btn:hover i {
    transform: translateX(2px); /* Reduced icon hover effect */
}

/* Bootstrap Navbar CSS */
.navbar-logo {
    padding: 15px;
    color: #faf4f4;
}

.navbar-mainbg {
    background-color: #1516169b;
    padding: 0px;
}

#navbarSupportedContent {
    overflow: visible;
    position: absolute;
}

#navbarSupportedContent ul {
    padding: 0px;
    margin: 0px;
}

#navbarSupportedContent ul li a i {
    margin-right: 10px;
}

#navbarSupportedContent li {
    list-style-type: none;
    float: left;
}

#navbarSupportedContent ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 20px 20px;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

#navbarSupportedContent > ul > li.active > a {
    color: #51ce89;
    background-color: transparent;
    transition: all 0.7s;
}

#navbarSupportedContent a:not(:only-child):after {
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    transition: 0.5s;
}

#navbarSupportedContent .active > a:not(:only-child):after {
    transform: rotate(90deg);
}

.hori-selector {
    display: inline-block;
    position: absolute;
    height: 100%;
    top: 0px;
    left: 0px;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background-color: #0a0a0a;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: 10px;
}

.hori-selector .right, .hori-selector .left {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #121111;
    bottom: 10px;
}

.hori-selector .right {
    right: -25px;
}

.hori-selector .left {
    left: -25px;
}

.hori-selector .right:before, .hori-selector .left:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #51ce76;
}

.hori-selector .right:before {
    bottom: 0;
    right: -25px;
}

.hori-selector .left:before {
    bottom: 0;
    left: -25px;
}

@media (min-width: 992px) {
    .navbar-expand-custom {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-custom .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-custom .navbar-toggler {
        display: none;
    }

    .navbar-expand-custom .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
}

@media (max-width: 991px) {
    #navbarSupportedContent ul li a {
        padding: 12px 30px;
    }

    .hori-selector {
        margin-top: 0px;
        margin-left: 10px;
        border-radius: 0;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
    }

    .hori-selector .left,
    .hori-selector .right {
        right: 10px;
    }

    .hori-selector .left {
        top: -25px;
        left: auto;
    }

    .hori-selector .right {
        bottom: -25px;
    }

    .hori-selector .left:before {
        left: -25px;
        top: -25px;
    }

    .hori-selector .right:before {
        bottom: -25px;
        left: -25px;
    }
}

/* About Us Section */
.about-us-section {
    padding: 60px 20px;
    background-color: rgba(31, 30, 30, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 25, 25, 0.733);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #f2f7f3;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.2rem;
    color: #f5f1f1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.key-points {
    list-style: none;
    padding: 0;
}

.key-points li {
    font-size: 1.1rem;
    color: #10f610;
    margin-bottom: 10px;
}

.about-media {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-us-section2 {
    padding: 60px 20px;
    background-color: rgba(109, 108, 108, 0.726);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(23, 22, 22, 0.18);
}

.about-us-section2 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-section2 .about-text h2 {
    color: #fdfdfd;
}

.about-us-section2 .about-text p {
    color: #f7f2f2;
}

.about-us-section2 .key-points li {
    color: #6df169;
}
.about-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 19, 18, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-modal.show {
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
}

.about-modal-content {
    background: rgba(5, 213, 95, 0.985);
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: scale(0.7);
    transition: transform 1s ease;
}

.about-modal.show .about-modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-body {
    color: #044608ec;
}

.modal-cta {
    display: inline-block;
    background: #22ff64e0;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
}  
/* Key Metrics Section */
.key-metrics-section {
    padding: 60px 20px;
    background-color: #11121162;
}

.metrics-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.metric {
    flex: 1;
    padding: 20px;
    max-width: 300px;
}

.metric-number {
    font-size: 3rem;
    font-weight: bold;
    color: #10ee86;
}

.metric p {
    font-size: 1.2rem;
    color: #f7f2f2;
    margin-top: 10px;
}

/* CTA Banner */
.cta-banner {
    padding: 60px 20px;
    background-color: #09de5b5a;
    text-align: center;
    color: #ffffff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ffffff;
    color: #22ff3f;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #08e217;
    color: #000000;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

    .about-text, .about-media {
        max-width: 100%;
    }

    .metrics-wrapper {
        flex-direction: column;
    }

    .metric {
        margin-bottom: 30px;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 25px;
    }
}


/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--spacing-sm); }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* Service Wizard Section */
.service-wizard-section {
    padding: 40px 20px;
    background-color: var(--bg-light-alt);
    text-align: center;
    margin-bottom: 30px;
}

.wizard-container {
    max-width: 800px;
    margin: 0 auto;
}

.wizard-heading {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.wizard-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.wizard-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.wizard-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wizard-heading {
        font-size: 1.8rem;
    }
    
    .wizard-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .wizard-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
  .ai-section {
      padding: 60px 20px;
      background-color: #22222271;
      text-align: center;
  }

  .ai-section h2 {
      font-size: 2.5rem;
      color: var(--text-dark);
      margin-bottom: 30px;
  }

  .ai-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
  }

  .ai-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease;
  }

  .ai-item:hover {
      transform: translateY(-10px);
  }

  .ai-item img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin-bottom: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease;
  }

  .ai-item:hover img {
      box-shadow: 0 4px 20px rgba(0, 255, 0, 0.521);
  }

  .ai-item p {
      font-size: 1rem;
      color: var(--text-dark);
      margin: 0;
      font-weight: 500;
  }

  @media (max-width: 768px) {
      .ai-section h2 {
          font-size: 2rem;
      }

      .ai-grid {
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
          gap: 15px;
      }

      .ai-item img {
          width: 80px;
          height: 80px;
      }

      .ai-item p {
          font-size: 0.9rem;
      }
  }

.desktop-hero {
    display: block;
}

.mobile-hero {
    display: none;
}

@media screen and (max-width: 768px) {
    .desktop-hero {
        display: none;
    }
    
    .mobile-hero {
        display: block;
    }
}
