:root {
    --head-font: 2.5rem;
    --sub-head-font: 1.5rem;
    --primary-font:1.3rem;
  }

  #signup-btn {
    padding: 10px 24px;
    background: linear-gradient(to bottom, #93f2f2, #f282f0);
   color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  #signup-btn:hover {
    border-color: transparent;
    background-color: #a0d1f9;
    transform: translateY(-2px);
  }
  


  .logo {
    font-family: 'Nico Moji', sans-serif;
    color: rgb(13, 1, 1);
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-links a {
    color: rgb(15, 2, 2);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #00bfff;
  }
  

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'League Spartan', sans-serif;
}

.main-logo {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-button {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #99d5e8;
    border-top: 2px solid #99d5e8;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.search-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: #178fb8;
    box-shadow: 0 0 8px rgba(2, 233, 250, 0.566);
}

.search-button {
    position: absolute;
    right: 5px;
    height: 35px;
    width: 35px;
    border: none;
    background: #0ab5d7;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #dbdedf;
    color: rgb(6, 160, 190);
    transform: scale(1.05);
}

/* Search icon */
.search-icon {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.search-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: currentColor;
    bottom: -6px;
    right: -3px;
    transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 480px) {
    .search-container {
        padding: 0 10px;
    }

    .search-input {
        font-size: 14px;
        padding: 10px 40px 10px 12px;
    }

    .search-button {
        height: 30px;
        width: 30px;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.stories {
    padding: 1rem;
}

.heading {
    color: #000;
    text-align: center;
    font-size: 3em;
    margin-bottom: .4rem;
}

.card {
    background: linear-gradient(to bottom, #ff6b00, #ff8533);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 30px;
    position: relative;
}

.seo-tag {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
}

.chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    margin: 20px 0;
}

.bar {
    width: 40px;
    background: #000;
    margin: 0 10px;
    position: relative;
}

.bar::after {
    content: attr(data-percentage);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}

.bar-1 {
    height: 45%;
}

.bar-2 {
    height: 60%;
}

.bar-3 {
    height: 50%;
}

.bar-4 {
    height: 98%;
}

.info-section {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
}

h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
}

p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eee;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: bold;
    color: #333;
}

.date {
    color: #666;
    font-size: 14px;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #333;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-content {
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }

    .chart {
        height: 150px;
    }

    .bar {
        width: 30px;
        margin: 0 5px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }

    .chart {
        height: 120px;
    }

    .bar {
        width: 20px;
    }

    .author-section {
        flex-direction: column;
        align-items: flex-start;
    }
}



.slider-container {
    position: relative;
    width: auto;
    margin: 0;
    
    overflow-y: hidden;
    /* display: flex;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth; */
}

.slider-wrapper {
    display: flex;
    padding: 1.5rem;

    /* overflow-x: auto; */
    overflow-x: scroll;
    overflow-y: hidden;
    /* position: relative; */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slider {
    display: flex;
    gap: 20px;
    width: auto;
    transition: transform 0.5s ease;
    -webkit-overflow-scrolling: touch;
}

.card {
    flex: 0 0 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(to right, #ff6b00, #ff8533);
    padding: 20px;
    position: relative;
}

.seo-tag {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat-bar {
    width: 20px;
    background: black;
    position: relative;
}

.stat-bar::after {
    content: attr(data-percentage);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 12px;
}

.card-content {
    padding: 20px;
}

h2 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
}

.author-info {
    font-size: 14px;
}

.author-name {
    font-weight: bold;
    color: #333;
}

.date {
    color: #666;
}

.buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff6b00;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ff6b00;
    color: #ff6b00;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.arrow-icon {
    border: solid #333;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
}

.prev-arrow .arrow-icon {
    transform: rotate(135deg);
}

.next-arrow .arrow-icon {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .card {
        flex: 0 0 300px;
    }

    .slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .card {
        flex: 0 0 260px;
    }

    .slider-container {
        padding: 0 30px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
    }

    .arrow-icon {
        padding: 4px;
    }
}
*{
    /* overflow-x:visible; */
    padding: 0;
    margin: 0;
    font-family: 'League Spartan', sans-serif;
    /* overflow: hidden; */
}

body {
  overflow-y:scroll;
  /* display: flex; 
  flex-direction: column; */
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none; /* Hides scrollbar in Chrome, Safari, and Edge */
}


.dropdown-menu-center {
  left: 50%;
  transform: translateX(-50%);
}

/* Custom Button Styling */
#signup-btn {
  background: linear-gradient(to bottom, #93f2f2, #f282f0);
  color: white;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

#signup-btn:hover {
  background-color: #a0d1f9;
  transform: translateY(-2px);
}

/* Optional: Adjust spacing */
.navbar-nav .nav-link {
  margin-right: 1rem;
}


/* Homepage Styles */
#homepage {
  padding: 6rem 2rem 4rem;
  min-height: calc(100vh - 400px);
}

.homepage {
  width: 97.3%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

#detail {
  flex: 1;
  max-width: 600px;
}

.welcome-text {
  font-size: 3rem;
  font-weight: 600;
  color: #484646;
  margin-bottom: 1rem;
}

.company-name {
  background: linear-gradient(90deg, #4c3cff 0%, #F05252 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tagline {
  color: #090909;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.description {
  color: #444;
  line-height: 1.7;
  font-size: var(--primary-font);
  margin-bottom: 2rem;
}

#detail-image {
 object-fit: contain;
  width:50%;
  height: 58vh;
  background-color: transparent;

 position: relative;
}
#detail-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
 }
 .hero-animate{
  animation: float 3s ease-in-out infinite;
 }

 @keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-20px);
  }
  100% {
      transform: translateY(0px);
  }
}

.hero-cloud{
  position: absolute;
  z-index: 100;
  top: 1rem;
  left: -4.5rem;
}

.hero-rocket{
  position: absolute;
  z-index: 100;
  top: 3rem;
  left: -4.5rem;
}
.hero-bulb{
  position: absolute;
  z-index: 100;
  top: 1rem;
  right: -1.5rem;
}


#button-container {
  text-align: center;
  margin-top: 2rem;
}
#button img{
  width: 3rem;
  height: 3rem;
  margin-right: 0cm;
  margin-left: 1rem;
}

#button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fef89c;
  padding: .8rem 2.1rem;
  border-radius: 40px;
  border: 2px solid #f0f0f0;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 2px 4px 1rem rgb(169, 169, 169);
  transition: all 0.3s ease;
}

#button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #0f0;
  box-shadow: 0 0 10px #0f0, 0 0 2px #0f0, 0 0 1rem #0f0;
  border-color: #0f0;
  transform: scale(1.1);
}



.scroll-top {
  width: 40px;
  height: 40px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: #0052a3;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .homepage {
      flex-direction: column;
      text-align: center;
  }

  #detail-image {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
  }

  .company-name {
      font-size: 4rem;
  }
}

@media (max-width: 768px) {
  nav {
      padding: 0 1rem;
  }

  .nav-links {
      display: none;
      position: absolute;
      top: 4rem;
      left: 0;
      width: 100%;
      background-color: rgba(253, 251, 251, 0.98);
      padding: 1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .menu-icon {
      display: block;
  }

  #signup-btn {
      margin-top: 1rem;
  }

  .company-name {
      font-size: 3rem;
  }

  .tagline {
      font-size: 1.5rem;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
}

@media (max-width: 480px) {
  #homepage {
      padding: 5rem 1rem 3rem;
  }

  .company-name {
      font-size: 2.5rem;
  }

  .description {
      font-size: 1rem;
  }

  #button {
      padding: 1rem 2rem;
      font-size: 1rem;
  }
}


































 /* -------------------------------------------------------------------------------------------------------------AD BAR  */
.ad-bar {
  
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 100%;
    height: 7rem;
    background: linear-gradient(180deg, #6db4e1, #089bdf);
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 0;
    justify-content: center;
    
  }
  
  img {
    width: 15rem;
    height: 4rem;
    object-fit: contain;
    padding: 0rem; 
   
  }
  
  .ad-content {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    width: 20rem;
    animation: marquee 15s linear infinite;
    gap: 6rem;
    z-index: 1;
  
  }
  
  .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    font-size: 2.5rem;
  }
  
  
  @keyframes marquee {
    0% {
      transform: translateX(120%);
    }
    100% {
      transform: translateX(-800%);
    }
  }





  /*---------------------------------------------------------------------------------------------------- WORKFLOW SECTION */

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}
.blurred-circle1{
 background-color: #64dbf6;
 height: 18rem;
 width: 18rem;
 border-radius: 50%;
 position: absolute;
 right: -12rem;
 top: 6rem;
 filter: blur(5rem);
 z-index: 1; 
}
.blurred-circle2{
  background-color: #f6f164;
  height: 18rem;
  width: 18rem;
  border-radius: 50%;
  position: absolute;
  left: -12rem;
  bottom:16rem;
  opacity: 52%;
  filter: blur(5rem);
  z-index: 1; 
 }
.main-heading {
    text-align: center;
    font-size: var(--head-font);
    margin-bottom: 3rem;
    color: #000;
}

.workflow-title {
    color: #ffd700;
    margin-bottom: 1rem;
}

.section {
    
    display: flex;
    align-items: center;
    gap: 15rem;
    margin-bottom: 4rem;
    min-height: 200px;
}

.content-wrapper {
    flex: 1;
}

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
}

.section-heading {
    font-size: var(--sub-head-font);
    color: #666;
    margin-bottom: 1rem;
}

.section-text p{
    font-size: var(--primary-font);
    color: #444;
    z-index: 3;
    
}

.section-text ul {
    list-style-position: inside;
    margin-top: 0.5rem;
}

.section-text li {
  font-size: var(--primary-font);
    margin-bottom: 0.5rem;
}

/* Reverse layout for execution and result sections */
.section.reverse {
    flex-direction: row-reverse;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .section.reverse {
        flex-direction: column;
    }

    .image-wrapper {
        margin: 0 auto;
    }

    .main-heading {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }
}

  













/* ------------------------------------------------------------------------------------------------------------------------SERVICES SECTION */






    



.container1 {
  max-width: 100%;
  padding: 2rem 1.5rem;
  overflow: hidden;
  box-sizing: border-box;
  
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
  /* padding: 0 20px; */
}

.services-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-header h2 span {
  color: #FFB800;
}

.services-scroll {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 2rem;
  scrollbar-width: thin;
  scrollbar-color: #FFB800 #f1f1f1;
}

/* Custom scrollbar styles */
.services-scroll::-webkit-scrollbar {
  height: .5rem;
}

.services-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0px;
}

.services-scroll::-webkit-scrollbar-thumb {
  background: #FFB800;
  border-radius: .3rem;
  position: fixed;
}

.services-scroll::-webkit-scrollbar-thumb:hover {
  background: #e6a600;
}

.services-row {
  display: inline-flex;
  gap: 3rem;
  padding: 1rem 2rem;
}


.section-title {
  text-align: center;
  margin-bottom: 20px;
}
.section-title h2 {
  font-weight: bold;
}
.bar {
  width: 50px;
  height: 4px;
  background-color: #007bff;
  margin: 0 auto;
  margin-bottom: 30px;
}
.single-industries-serve-box {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.single-industries-serve-box:hover {
  transform: translateY(-5px);
}
.single-industries-serve-box .icon {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 10px;
}


.discover-content h2 {
  font-weight: bold;
  font-size: 40px;
}
.discover-content p {
  margin-top: 15px;
  line-height: 1.6;
  font-size: 20px;

}
.discover-image img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
}
.analytics-shape {
  text-align: center;
  margin-top: 30px;
}







.service-card {
  height: fit-content;
  background-color: #E6F7FF;
  border-radius: .8rem;
  padding: 1rem;
  /* width: 20rem; */
  /* flex-shrink: 0; */
  /* display: flex; */
  /* flex-direction: column; */
  gap: 1.5rem;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  white-space: normal;
  vertical-align: top;
}

.service-card:hover {
  transform: translateY(-2rem);
}

.service-icon img {
  width: 8rem;
  height:8rem;
  object-fit: contain;
  margin-bottom: 0rem;
  margin-top: 0;
  padding: 0;

}

.service-title {
  font-size: var(--sub-head-font);
  margin-top: 0;
  margin-bottom: .5rem;
  color: #333;
  padding: 0;
}

.service-description {
  color: #666;
  line-height: 1.6;
  font-size: var(--primary-font);
}

/* Scroll buttons */
.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFB800;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.scroll-button:hover {
  opacity: 1;
}

.scroll-left {
  left: 1rem;
}

.scroll-right {
  right: 1rem;
}
.toggle-button {
  background: #FFB800;
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .scroll-button {
      display: none;
  }
}
























/* -------------------------------------------------------------------------------------------------------------------------------------RECENT PROJECTS */










    .recent-projects{
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: linear-gradient(135deg, #fff9c4, #bbdefb);
      font-family: Arial, sans-serif;
      padding: 2rem;
      box-sizing: border-box;

    }





    .title {
      font-size: 2.5rem;
      margin-bottom: 3rem;
      text-align: center;
  }

  .highlight {
      color: #ffd700;
  }

  .bookshelf {
      width: 90%;
      max-width: 1000px;
      margin: 0 auto;
  }

  .shelf-top {
      height: 20px;
      background: linear-gradient(90deg, #8b4513, #a0522d);
      border-radius: 5px 5px 0 0;
  }

  .shelf-books {
      background: #deb887;
      padding: 2rem;
      display: flex;
      gap: 2rem;
      justify-content: center;
      align-items: flex-end;
      min-height: 300px;
  }

  .shelf-bottom {
      height: 15px;
      background: linear-gradient(90deg, #8b4513, #a0522d);
  }

  .book {
      width: 50px;
      height: 200px;
      cursor: pointer;
      position: relative;
      transform-origin: bottom;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .book:hover {
      transform: translateY(-20px);
  }

  .book-title {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      color: #333;
      font-weight: bold;
      text-align: center;
  }

  .book-1 { background: #808080; }
  .book-2 { background: #ffb6c1; }
  .book-3 { background: #ffffff; }

  .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      padding: 1rem;
  }

  .modal.active {
      display: flex;
      animation: fadeIn 0.3s ease;
  }

  .modal-content {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      width: 90%;
      max-width: 600px;
      position: relative;
      transform-origin: center;
      animation: openBook 0.5s ease;
  }

  .close-btn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
  }

  .project-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }

  .project-description {
      margin-bottom: 1.5rem;
      line-height: 1.6;
  }

  .button-group {
      display: flex;
      gap: 1rem;
  }

  .btn {
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
  }

  .btn-primary {
      background: #2196f3;
      color: white;
  }

  .btn-secondary {
      background: #e0e0e0;
      color: #333;
  }

  .btn:hover {
      opacity: 0.9;
  }

  @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
  }

  @keyframes openBook {
      from {
          transform: scale(0.3) rotateY(-180deg);
          opacity: 0;
      }
      to {
          transform: scale(1) rotateY(0);
          opacity: 1;
      }
  }






























/*------------------------------------------------------------------------------------------------------------------------------------------------- REVIEW SECTION */

    .container2 {
        box-sizing: border-box;
        max-width: 100%;
        margin-top: 2rem;
        padding: 40px 20px;
        background: linear-gradient(to bottom right, #ffffff, #e6f7ff);
        
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }

    .testimonials-header h2 {
        font-size: var(--head-font);
        color: #333;
    }

    .testimonials-header h2 span {
        color: #FFD700;
    }

    .testimonials-scroll {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 2rem 0;
        scrollbar-width: none; /* Firefox */
    }

    .testimonials-scroll::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .testimonials-row {
        display: inline-flex;
        gap: 2rem;
        padding: 1rem 2rem;
       
    }


    .testimonial-card {
        background: rgba(173, 216, 230, 0.3); /* Light blue with transparency */
        backdrop-filter: blur(.2rem); /* Reduced blur effect */
        -webkit-backdrop-filter: blur(.2rem); /* Safari support */
        border-radius: .5rem;
        padding: 1rem;
        text-align: center;
        width: 23rem;
        flex-shrink: 0;
        white-space: normal;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1); /* Soft shadow */
        border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for frosted effect */
    }
    

    .testimonial-card:hover {
        transform: translateY(-1.8rem);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .client-name {
        font-size: 1.2rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
    }

    .client-review {
        color: #666;
        line-height: 1.6;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .stars {
        /* display: flex; */
        gap: 5px;
        margin-bottom: 15px;
        text-align: center;
    }

    .star {
        width: 20px;
        height: 20px;
        /* fill: #FFD700; */
        transition: filter 0.3s ease, transform 0.3s ease;
    }

    .testimonial-card:hover .star {
        filter: drop-shadow(0 0 5px #FFD700);
        transform: scale(1.1);
        animation: glow 1s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from {
            filter: drop-shadow(0 0 2px #FFD700);
        }
        to {
            filter: drop-shadow(0 0 8px #FFD700);
        }
    }

    .rating-icon {
        /* position: absolute; */
        width: 60px;
        height: 60px;
        top: -20px;
        right: -20px;
        transform: rotate(15deg);
        transition: transform 0.3s ease;
        border-radius: 50%;
    }

    .testimonial-card:hover .rating-icon {
        transform: rotate(0deg) scale(1.1);
    }

    .navigation-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .nav-btn {
        background: #FFD700;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .nav-btn:hover {
        transform: scale(1.1);
        background: #FFE44D;
    }





/*------------------------------------------------------------------------------------------------------------------------------------------------------- FORM SECTION */




.contact-section {
  min-height: 100vh;
  background: rgba(173, 216, 230, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
}

.contact-container {
    background: rgba(126, 236, 238, 0.3); /* Light cyan with transparency */
    backdrop-filter: blur(.2rem); /* Background blur for glass effect */
    -webkit-backdrop-filter: blur(.2rem); /* Safari support */
    border-radius: 2rem;
    padding: 3rem;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 2.5rem 3rem rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for frosted effect */
    position: relative;
    display: flex;
    gap: 4rem;
    
  }
  .contact-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .contact-container.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  

.content-left {
  flex: 1;
  min-width: 300px;
}

.form-right {
  flex: 1;
  font-size: var(--primary-font);
  min-width: 300px;
}

.rocket-left, .rocket-right {
  position: absolute;
  width: 12rem;
  height: 12rem;
  opacity: 0;
  transform: translateX(-200px);
  z-index: 1001;
}

.rocket-left {
  top: 2rem;
  right: 2rem;
  transform: rotate(-135deg) translateX(-200px);
  z-index: 2;

}

.rocket-right {
  bottom: 40px;
  right: 40px;
  transform: rotate(-15deg) translateX(200px);
}

.visible .rocket-left {
  animation: flyInLeft 3s ease forwards;
}

.visible .rocket-right {
  animation: flyInRight 2.2s ease forwards;
}

@keyframes flyInLeft {
  from {
    opacity: 0;
    transform: rotate(-15deg) translateX(-4rem) translateY(12rem) ;
  }
  to {
    opacity: 1;
    transform: rotate(135deg) translateX(-9rem) translateY(5rem);
  }
}

@keyframes flyInRight {
  from {
    opacity: 0;
    transform: rotate(-15deg) translateY(40rem);
  }
  to {
    opacity: 1;
    transform: rotate(55deg) translateX(0rem) translateY(3rem);
  }
}

.content-left h1 {
  font-size: var(--head-font);
  margin-bottom: 1rem;
}

h1 span {
  color: #ffd700;
}

.content-left p{
  font-size: var(--primary-font);
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
  border-color: #ffd700;
}

.btn-send {
  background: #ffd700;
  color: #333;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn-send:hover {
    transform: translateY(-2px) scale(1.2);
    color: #fff; /* Optional: Change the text color if needed */
    background-color: rgb(77, 247, 77); /* Change background to green */
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.7), /* Green glow */
                0 0 20px rgba(88, 228, 88, 0.5); /* Outer glow effect */
  }
  
.email-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: #333;
  font-size: var(--primary-font);
}

.email-container img {
  width: 2rem;
  height: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem;
    }
  
    .content-left, .form-right {
      width: 100%;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    .contact-section {
      padding: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .contact-container {
      padding: 1.5rem;
      gap: 1rem;
      flex-direction: column;
      align-items: center;
     
    }
  
    .rocket-left, .rocket-right {
      
      top: 2rem;
    }
  
    .content-left, .form-right {
      width: 100%;
    }
  
    .form-right {
      order: 2;
    }
  
    h1 {
      font-size: 1.8rem;
    }
  
    p {
      font-size: 0.9rem;
    }
  
    input, textarea, select {
      padding: 0.6rem;
      font-size: 0.9rem;
    }
  
    .btn-send {
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
      display: block;
      margin: 0 auto; /* Center-aligns the button */
    }
  }






/*------------------------------------------------------------------------------------------------------------------------------------------------------- BLOG SECTION */





.blog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.blogs-title-highlight {
  color: #FFD700;
}

.show-all-div {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.show-all-button {
  background: #8080FF;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.show-all-button:hover {
  background-color: #66c5cc;
  transform: translateY(-0.1rem) scale(1.1);
  box-shadow: 0 0 10px #66ebff, 0 0 20px #94e1f9, 0 0 30px #81dafa, 0 0 40px #66c2ff;
}

.blog-carousel {
  background: #FFF9F0;
  border-radius: 1.5rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.blog-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.blog-container::-webkit-scrollbar {
  display: none;
}

.blog-card {
  min-width: calc(50% - 10px);
  background: #E6E6FA;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-0.8rem);
}

.blog-image {
  width: 100%;
  padding: 1rem;
  background: #E6E6FA;
}

.blog-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.blog-content {
  padding: 1.2rem;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.blog-date {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #8080FF;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #6666CC;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: #8080FF;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background: #6666CC;
  transform: translateY(-50%) scale(1.1);
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .blog-card {
    min-width: 100%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .blog-title {
    font-size: 1.2rem;
  }

  .blog-content {
    padding: 1rem;
  }

  .show-all-div {
    justify-content: center;
    margin: 1rem 0;
  }

  .carousel-button {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .blog-title {
    font-size: 1rem;
  }

  .show-all-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}






/* 
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------FOOTER section */







.footer {
  background: linear-gradient(to bottom, #e6f7ff, #b3e6ff);
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  bottom: 0;
  /* width: 97.3%; */
}

#dgfooter-logo {
  margin: 0;
  /* padding: 0 0 0rem 0; */
  display: flex;
  /* justify-content: center; */
  font-size: 5em;
  font-weight: 600;
}

.footer-content {
  /* margin: 0 auto; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1;
}

.footer-section {
  color: #333;
  margin-bottom: 20px;
  font-size:var(--primary-font);
}

.contact-info p {
  margin: 10px 0;
  font-size:var(--primary-font);
}

.contact-info a,
.footer-section ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover,
.footer-section ul li a:hover {
  color: #0066cc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  /* margin: 10px 0; */
}

.character-img {
  height: 17rem;
  width: 17rem;
  object-fit: cover;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  background-color: #0066cc;
  color: #fff;
}

.contact-btn {
  background-color: #0066cc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  left: 50%;
  font-size:var(--primary-font);
}

.contact-btn:hover {
  background-color: #0052a3;
}

.scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.scroll-top:hover {
  background-color: #0052a3;
}

@media (max-width: 768px) {
  .footer-section {
      flex: 100%;
      text-align: center;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }

  .social-icons {
      justify-content: center;
  }
  #dgfooter-logo{
      display: flex;
      justify-content: center;
  }
}


















