:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --background: #ffffff;
    --gradient-start: #1e40af;
    --gradient-end: #3b82f6;
    --success: #22c55e;
    --warning: #eab308;
    --error: #ef4444;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation Styles */
.nav-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-top: -20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.tagline {
    font-size: 0.875rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-links li i{
  color:orange;
}
.nav-links li a{
  color:darkblue;
}

.nav-link:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.navbar-toggle {
  display:none;
  cursor: pointer;
  }
  
  .menu-icon,
  .close-icon {
	font-size: 30px;
	color: orange;
	border:2px solid darkblue;
	border-radius:5px;
	padding:0 5px;
	margin-right: 40%;
  margin-top: -15px;
  }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

  /* Popup form */
  .popup {
    display: none;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 300px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    z-index: 1000;
}
.popup::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 1001;
}
.popup.active {
    display: block;
}
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.popup-header h3 {
    margin: 0;
    color:orangered;
    font-weight:600;
}
.popup-header .close {
    cursor: pointer;
    font-size: 20px;
    background:red;
    border-radius:4px;
    color:white;
    padding-right:2px;
    padding-left:2px;
}
.popup form {
    display: flex;
    flex-direction: column;
}
.popup label {
    margin-bottom: 5px;
}
.popup .input-group {
    position: relative;
    margin-bottom: 15px;
}
.popup .input-group input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.popup .input-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #aaa;
}
.popup .actions {
    display: flex;
    justify-content: space-between;
}
.popup .actions a {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
}
.popup .actions a:hover {
    text-decoration: underline;
}

/* Section container with light blue background and rounded corners */
.section-container {
  display: flex;
  flex-wrap: wrap;
  background-color: lightblue;
  border-radius: 16px;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 20px;
  padding: 20px;
}

/* Flex items that hold the image and value */
.flex-div {
  display: flex;
  align-items: center;
  flex-basis: 45%; /* Adjusts the width of each flex item */
  padding: 10px;
  background-color: transparent;
  border-radius: 8px;
  width: 200px;
}

/* Image styling */
.image {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Value container with border left at the center */
.value-container {
  position: relative;
  flex-grow: 1; /* Allow value container to take the remaining space */
}

/* Left border in the center */
.value-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 50%; /* Covers 50% of the section height */
  width: 1px;
  background-color: #ccc;
}

/* Value styling */
.value {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

/* Paragraph styling */
.value-container p {
  margin-top: 10px;
  color: black;
  font-size: 14px;
}


/*dashboard*/
.flex-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

/* YouTube video container styles */
.video-container {
  flex: 1;
  max-width: 450px; /* Minimum width to maintain responsiveness */
}

.video-container img {
  width: 100%;
  height:340px;
}

/* Text container styles */
.text-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Logo background */
.text-container .overlay {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/goldenhourlogo.jpg') center center/cover no-repeat;
  background-size: contain;
  opacity: 0.2; /* Control the opacity of the background image */
  z-index: 1;
}

/* Typing text styles */
.list-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-family: 'Arial', sans-serif;
  max-width: 300px; /* Set max width for the text */
  margin: 0 auto; /* Center the text horizontally */
  overflow: hidden; /* Ensure text doesn't overflow */
  word-wrap: break-word; /* Break words to fit within the max width */
}

.list-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-container ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 1em;
}

.list-container ul li:last-child {
  border-bottom: none;
}

.list-container ul li .icon {
  color: #0288d1;
  margin-right: 10px;
}

.list-container ul li .label {
  flex: 1;
  font-weight: bold;
  color: #333;
}

.list-container ul li .pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-container ul li .pricing .original-price {
  text-decoration: line-through;
  color: #999;
}

.list-container ul li .pricing .free {
  color: #0288d1;
  font-weight: bold;
}
.list-container ul li button {
  padding: 10px 20px;
    font-size: 1em;
    color: white;
    background: blue;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .list-container ul li button:hover {
    background: orange;
  }


/*services*/
.services-section {
    width: 80%;
    margin: 0 auto;
    padding: 30px 20px;
    background: #007bff;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .services-section h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color:white;
    font-style: italic;
    font-weight: 600;
  }

  .service-card {
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 450px;
    margin-top:20px;
  }

  .service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .service-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
  }

  .service-card-content {
    flex: 1;
  }

  .service-card-content h1 {
    font-size: 1.5em;
    margin: 0 0 10px;
    color: white;
  }

  .service-card-content p {
    font-size: 1em;
    line-height: 1.5;
    margin: 0 0 20px;
    color: #e0e0e0;
  }

  .service-card-content button {
    padding: 10px 20px;
    font-size: 1em;
    color: #007bff;
    background: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .service-card-content button:hover {
    background: orange;
  }

  /* Section styling */
.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 16px;
}

/* Each stat box */
.stat {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-right: 1px dotted blue;
  border-bottom: 1px dotted blue;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Remove the right border for the last column in each row */
.stat:nth-child(3n) {
  border-right: none;
}

/* Remove the bottom border for the last row */
.stat:nth-last-child(-n+3) {
  border-bottom: none;
}

/* Icon styling */
.icon1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #007bff;
}

/* Number styling */
.number {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

/* Description styling */
.description {
  font-size: 16px;
  color: #555;
}

  /*values*/
  .features-section {
    background: #e3f2fd;
    padding: 40px 20px;
    display: flex;
margin-top:20px;
  }

  .features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  }

  .feature-description {
    flex: 1 1 100%;
    border-left: 5px solid #0288d1;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
  }

  .feature-description h1 {
    font-size: 2em;
    color: orange;
    margin-bottom: 10px;
  }

  .feature-description p {
    font-size: 1.2em;
    color: #0288d1;
    line-height: 1.6;
  }

  .feature-icons {
    flex: 2 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width:600px;
  }

  .feature-icon {
    flex: 1 1 calc(50% - 20px);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .feature-icon i {
    font-size: 1.2em;
    color: blue;
    margin-right: 10px;
  }

  .feature-icon h1 {
    font-size: 1.2em;
    color: #333;
  }

/*steps*/
.writing-system {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}
.step h3 {
    font-weight: bold;
}
.step p:first-child {
    color: orangered;
}
.step p{
    margin-top: 5px;
}
.step .icon {
    border-radius: 50%;
    border: 2px solid orange;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: darkblue;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
}
.step .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:orange;
}
.step .icon:nth-child(2) {
    color: white;
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
    height: 2px;
    background-color: orange;
    width: 100px;
}
.step button {
    display: inline-block;
    background-color: orange;
    color: #fff;
    padding: 7px 9px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    border:none;
  }

  .step button:hover {
    background-color: darkblue;
  }

  /*cards*/
  .card-section {
    position: relative;
    width: 95%;
    max-width: 1100px;
    overflow: hidden;
    padding-left: 5%;
  }
  .cards-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  .card {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #fcfcfc;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .card img {
    width: 70px;
    height: 70px;
    background-size: 60px;
    margin-top: -5px;
    border-radius: 50%;
    margin-right:20px;
  }
  .card .name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .card .rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .card .rating i {
    color: orange;
    font-size: 12px;
  }
  .card .rating .rating-value {
    margin-left: 20px;
    font-weight: bold;
  }
  .card .stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
    border-top :1px solid #ccc;
    border-bottom:1px solid #ccc;
  }
  .card .stats div {
    font-size: 0.9em;
  }
  .card .stats div span {
    font-weight: bold;
    font-size: 1.2em;
    display: block;
  }
  .card .topics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
  }
  .card .topics button {
    padding: 5px 10px;
    background: #ccc;
    border: none;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: default;
  }
  .card .order-button {
    width: 90%;
    padding: 10px;
    background: orange;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .card .order-button:hover {
   background:blue;
  }
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  .pagination div {
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
  }
  .pagination div.active {
    background: #007bff;
  }

/*faq*/
.section {
    background-color: lightblue;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width:700px;
}

.collapsible {
    background-color: white;
    border: 2px solid orange;
    border-radius: 10px;
    width: calc(50% - 20px); /* Two divs per row */
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: lightblue;
    padding: 5px 10px;
    border-radius: 8px;
}

.dropdown {
    font-size: 18px;
    color: darkblue;
}

h1 {
    font-size: 15px;
    color: darkblue;
    margin-left: 10px;
    flex-grow: 1;
}

.content {
    display: none;
    margin-top: 10px;
    color: black;
    font-size: 14px;
}

img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 5px;
    margin-top: 15px;
}

.flex-item h1 {
    text-align: center;
    color:blue;
    font-size: 25px;
}

.flex-item button{
    border:none;
    padding:10px 15px;
    background-color: #3b82f6;
    cursor:pointer;
    text-decoration: none;
    border-radius:4px;
    text-align:center;
}
.quote-container {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quote-text {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    position: relative;
}

.quote-text::before {
    content: "“";
    font-size: 100px;
    color: blue;
    position: absolute;
    top: -40px;
    right: -30px;
    line-height: 1;
    font-family: 'Times New Roman', Times, serif;
}

/*reviews*/
.blogs-container {
    display: flex;
    width: 100%;
    padding-right: 2%;
    margin-top: 0;
  }
  
  .rating-container {
    width: 30%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: blue;
    color: black;
    margin-left: 0;
    margin-right: 5px;
  }
  
  .blog-slider-container {
    width: 70%;
    overflow: hidden;
    position: relative;
  }
  
  .blogimages {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    z-index: 999;
  }
  .blogimages img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-size: 50px;
    justify-content: space-between;
  }
  .blogimages img:first-child {
    margin-right: 70%;
    float: left;
  }
  .swiper-slide {
    background-color: #333;
  }
  
  .card1 {
    position: relative;
    background-color: #333;
    padding: 10px 20px;
    box-shadow: 0 0 10px #ccc;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #fcfcfc;
    border-radius: 5px 5px 5px 5px;
  }
  
  .overlay {
      border-radius: 5px 5px 0 5px;
      position: absolute;
      height: 25%;
      width: 100%;
      left: 0;
      top:0;
      background-color: #333;
  }
  .overlay::before,
  .overlay::after{
      content:'';
      position:absolute;
      height: 40px;
      width: 40px;
      right: 0;
      bottom: -40px;
      background-color: #333;
  }
  .overlay::after{
      border-radius: 0 25px 0 0;
      background-color: #333;
      background-color: #333;
  }
  .card1 .image {
    width: 100%;
    height: auto;
    padding: 3px;
    margin-bottom:5px;
    z-index: 1000;
  }
  .card1 h3{
    color: red;
    font-size: 20px;
    top: 25%;
    z-index: 999;
  }
  
  .card1 p {
    color:white;
    text-align: center;
  }
  
  .swiper-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
  }
  .swiper {
    margin: 0 auto;
    cursor: grab;
  }
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 15px;
    height: 10px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 30px;
    font-weight: bold;
    color: blue;
  }
  .swiper-button-next {
    margin-right: 20px;
  }
  .swiper-button-prev {
    margin-left: 10px;
  }
  .swiper-button-next:hover {
    transform: scale(1.2) translateX(80%);
  }
  .swiper-button-prev:hover {
    transform: scale(1.2) translateX(-80%);
  }
  .swiper-button-next {
    transform: translateX(100%);
  }
  .swiper-button-prev {
    transform: translateX(-100%);
  }
  .swiper-pagination {
    transform: translateY(200%);
  }
  .swiper-pagination-bullet {
    background: #fff;
    width: 10px;
    height: 10px;
    margin-top: 5px;
  }

  /* Section Styling */
.info-section {
  display: flex;
  flex-wrap: wrap;
  margin-top:0;
  margin-bottom:0;
  gap: 20px;
  background-color: white; /* Light blue background */
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Info Box Styling */
.info-box {
  flex: 1 1 calc(33.333% - 20px);
  padding: 20px;
  background-color: #ffffff; /* White background */
  border-radius: 12px;
 /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
}

.info-box h1 {
  font-size: 28px;
  color: #007bff; /* Blue color */
  margin-bottom: 10px;
}

.info-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.cta-button {
  background-color: orange; /* Blue button */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Second Div Styling */
.info-box h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.feature-list .tick {
  display: inline-block;
  background-color: #28a745; /* Green background */
  color: #ffffff; /* White text */
  font-size: 14px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  margin-right: 10px;
}

/* Third Div Styling */
.info-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.light-blue-section {
    background-color: lightblue; /* Very light blue */
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
    display: flex;
  }

  .content2 {
    margin: 0 auto;
    max-width: 600px;
  }

  .content2 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
  }

  .content2 ul {
    padding: 0;
    margin-bottom: 20px;
  }

  .content2 ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #555;
  }

  .content2 .order-button {
    display: inline-block;
    background-color: orange;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
  }

  .content2 .order-button:hover {
    background-color: darkblue;
  }

/* Footer */
 .footer {
    background: var(--secondary);
    color: var(--text-light);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    margin: 0 auto;
    display: flex;
    flex-wrap:wrap;
    gap: 3rem;
    justify-content: space-between;
}

.footer-info h3 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size:1.5em;
}

.footer-link ul li{
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    text-decoration:none;
    font-size:1em;
    font-weight:300;
}
.footer-info p{
    margin-top:2px;
}
.footer-info p a {
  color: #fcfcfc;
  text-decoration: none;
  transition: color 0.3s ease;
  text-decoration:none;
  font-size:1em;
  font-weight:300;
  margin-top:5px;
}
.footer-info p a:hover {
  color:orange;
}
.quicklink p a i{
  border:2px solid #fcfcfc;
  color:#fcfcfc;
  font-size:25px;
  padding:5px;
  border-radius:50%;
  margin-right:10px;
  margin-top:10px;
}
.quicklink p a i:hover{
color:orange;
}

a {
  text-decoration: none;
}

.footer-link a:hover {
    color: orange;
}


.made-with-love .heart {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { color: white; }
  33% { color: red; }
  66% { color: yellow; }
  100% { color: white; }
}

.made-with-love a {
  color: #0288d1;
  text-decoration: none;
  font-weight: bold;
}

.made-with-love a:hover {
  text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

 /*PRIVACY POLICY*/
     .privacy{
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px #ccc;
        text-align:start;
        margin-top: 90px;
        margin-left: 5%;
        margin-right: 5%;
        margin-bottom: 20px;
    }
    .evaluation {
        text-align: center;
        border-bottom: 1px solid orange;
    }
    .privacy h1{
        text-align: start;
        margin-top: 20px;
        margin-bottom: 5px;
        font-size: 25px;
        color: darkkblue;
        font-weight: 800;
      }
      .privacy p{
        text-align: start;
      }
      .privacy li{
        text-align: start;
      }


@media (max-width: 1000px) {
  .nav-right {
	  display: none;
	  width: 100%;
	  background-color: #FCFCFC;
	  position: absolute;
	  top: 60px;
	  left: 0;
	  padding: 20px;
	  flex-direction: column;
	}
   
	.nav-right ul {
	  display: block;
	  width: 100%;
	  top:20px;
	}
  
	.nav-right li {
	  width: 100%;
	  padding: 5px 0;
	  text-align: center;
	  border-bottom: 1px solid #ccc;
	  border-left: none;
	}
  
	.navbar-toggle {
	  display: block; /* Show the hamburger icon on mobile */
	}
  
	.navbar-toggle .close-icon {
	  display: none; /* Hide close icon initially */
	}
  
	.navbar-toggle.active .menu-icon {
	  display: none;
	}
  
	.navbar-toggle.active .close-icon {
	  display: inline-block;
	}
  
	.navbar-toggle.active ~ .nav-right {
	  display: flex; /* Show menu when toggled */
	}

    .card {
      flex: 0 0 calc(100% / 2);
      max-width: calc(100% / 2);
    }
  }
  @media (max-width: 700px) {
    .card {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }

@media screen and (max-width:500px) {
    .light-blue-section {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }
    .light-blue-section img{
        width:100%;
        height:auto;
    }
    .content2 {
        width: 100%;
    }
    .blogs-container{
      flex-direction: column;
    }
    .rating-container,
    .blog-slider-container {
      width: 100%;
    }
    .flex-container {
      flex-direction: column;
    }
    
    .text-container,
    .video-container {
      width: 100%;
    }
}