:root {
  --background-color-: #f4f8ff;
  --white-: #f4f8ff;
  --black-: #000000;
  --light_blue: #daeaee;
  --border_blue: #d9ecf0;
  --message_blue: #c6e3e6;
  --bg-blue-color: #a7d1ce;
  --link-color: inherit;
  --link-decoration: none;
}
section {
  box-shadow: 0px 4px 12px -4px rgba(0, 0, 0, 0.1);
}

.highlight {
  background-color: yellow;
  color: black;
}
.active-highlight {
  background-color: orange;
}

a {
  color: var(--link-color);
  text-decoration: var(--link-decoration);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Prevents horizontal scrolling */
}
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700&display=swap");

body {
  font-family: "Manrope", sans-serif;
}

.mt-1 {
  margin-top: 10px !important;
}
.mt-2 {
  margin-top: 20px !important;
}
.mt-3 {
  margin-top: 30px !important;
}
.mt-4 {
  margin-top: 40px !important;
}
.mt-5 {
  margin-top: 50px !important;
}

.ml-1 {
  margin-left: 10px !important;
}
.ml-2 {
  margin-left: 20px !important;
}
.ml-3 {
  margin-left: 30px !important;
}
.ml-4 {
  margin-left: 40px !important;
}
.ml-5 {
  margin-left: 50px !important;
}

.mr-1 {
  margin-right: 10px !important;
}
.mr-2 {
  margin-right: 20px !important;
}
.mr-3 {
  margin-right: 30px !important;
}
.mr-4 {
  margin-right: 40px !important;
}
.mr-5 {
  margin-right: 50px !important;
}

.fs-25 {
  font-size: 20px !important;
}
.fs-55 {
  font-size: 55px !important;
}

#hero {
  position: relative;
  padding: 100px 0;
  color: var(--black-);
  overflow: hidden; /* Prevents overflow issues */
  padding-bottom: 10px;
}
#hero {
  position: relative;
  padding: 50px 0;
  color: var(--black-);
  overflow: hidden;
  /* Multiple Background Images */
  background-image: url("/ergani/assets/imgs/bg.png");
  background-position: right bottom, center top;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
  right: 90px, 90px;
}

.mt-20 {
  margin-top: -50px !important;
}

.header {
  display: flex;
  align-items: center; /* Align image and buttons at the same height */
  justify-content: space-between; /* Space between image and buttons */
  width: 100%;
  padding: 10px 0px;
  margin-top: -80px;
  gap: 200px;
  margin-right: 120px;
}
.mobile-header {
  display: none; /* Hide mobile version by default */
}
.menou {
  display: flex;
  justify-content: space-between;
  width: 55%;
  font-weight: bold;
  margin-top: -20px;
}

.greenbutton {
  background-color: #50d219;
  color: #f4f8ff;
  padding: 5px 18px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
}

.greenbutton:hover {
  background-color: darkgreen;
}

.buttons {
  all: unset;
  cursor: pointer;
  font-size: 17px;
}

.buttons:hover {
  color: darkgreen;
}
.landing {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 20px;
  gap: 150px;
}
.landinginput {
  margin-top: 10px !important;
}
.search1 {
  display: flex;
  align-items: center;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 6px 15px;
  background-color: white;
  width: 300px;
  margin-top: 40px;
  margin-left: 0;
  align-self: flex-start;
}
.search1 input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 18px;
  background: transparent;
}

.search1 svg {
  color: black;
  font-size: 18px;
  cursor: pointer;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.landinginfo {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-top: 200px;
  margin-left: 30px;
  gap: 15px;
}

@media (min-width: 1024px) {
  /* 📌 Center Header & Remove Unwanted Space */
  .header {
    display: flex !important;
    align-items: center !important; /* Aligns items vertically */
    justify-content: center !important; /* Centers items */
    width: 100% !important;
    padding: 10px 0 !important;
    position: relative;
    margin: 0 auto !important; /* ✅ Ensures it's centered */
    gap: 240px !important; /* Adjust spacing */
  }

  /* 📌 Adjust Logo (Ensure it Stays Centered) */
  .header img {
    max-width: 300px !important; /* Adjust size */
    height: auto !important;
    margin: 0 !important; /* ✅ Remove any margin issues */
  }

  /* 📌 Center Navigation Menu */
  .menou {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important; /* Space between buttons */
    text-wrap: nowrap;
  }

  /* 📌 Adjust Buttons */
  .buttons,
  .greenbutton {
    font-size: 18px !important;
    padding: 6px 20px !important;
    border-radius: 20px;
  }
}

/* ✅ Mobile & Tablet Specific Styles */
@media (max-width: 1024px) {
  /* Hero Section Full Coverage */
  #hero {
    width: 100vw;
    height: auto;
    background-size: cover !important; /* Ensures full coverage */
    background-position: center !important;
    overflow: hidden;
    margin-bottom: 50px !important;
    padding-top: 10px;
  }

  /* Hide desktop menu */
  .header {
    display: none;
  }
  .landinginfo {
    margin-top: 60px;
    margin-left: 0px;
    align-items: center;
    text-align: justify;
  }
  .landing {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .phones img {
    width: 95%; /* or max-width: 300px; */
    display: block; /* ensure it's not inline and collapsing */
    align-items: center;
    padding-left: 30px;
  }
  .search1 {
    display: flex;
    align-items: center;
    border: 2px solid #000;
    border-radius: 30px;
    padding: 5px 10px;
    background-color: white;
    width: 280px;
    margin-top: 40px;
    margin-left: 0;
    align-self: center;
  }
  /* Show mobile header */
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px 20px;
    background-color: var(--white);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .menu-bar {
    font-size: 25px !important; /* Increase size */
    color: black;
  }
  .mobile-header img {
    max-width: 250px; /* Adjusted size */
  }

  .menu-toggle {
    all: unset; /* Resets styles */
    display: block;
    font-size: 28px;
    cursor: pointer;
    width: auto;
    height: auto;
    text-align: center;
    opacity: 0; /* 👈 Makes it invisible */
    pointer-events: all; /* Ensures it is still clickable */
    border: none;
  }
  .menu-button {
    all: unset; /* Completely resets all styles */
    outline: none;
    padding-right: 10px;
  }

  /* Mobile Dropdown Menu (Initially Hidden) */
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 6px rgba(50, 51, 45, 0.1);
    border-radius: 10px;
    padding: 20px;
    z-index: 999;
  }

  /* Show Menu When Active */
  .mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobile Menu Buttons */
  .mobile-menu button {
    width: 100%;
    padding: 10px;
    border: none;
    background: none;
    text-align: left;
    font-size: 18px;
  }

  /* Phones Section */
  .phones {
    max-width: 350px;
  }

  /* Header Centering */
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  /* Logo Resize */
  .header img {
    max-width: 100px;
  }

  /* Adjust Navigation Menu */
  .menou {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  /* Buttons Adjustments */
  .buttons,
  .greenbutton {
    width: 80%;
    font-size: 16px;
    padding: 10px 0;
    text-align: center;
  }

  /* Text Adjustments */
  .fs-55 {
    font-size: 2.2rem !important;
  }

  .fs-25 {
    font-size: 1rem !important;
  }

  /* Layout Adjustments */
  .row {
    flex-direction: column;
    text-align: center;
    margin-top: 30px !important;
  }

  .col-md-6,
  .col-md-4 {
    width: 100%;
    margin-top: 50px;
  }

  .col-md-4 img {
    max-width: 90%;
    height: auto;
  }
  .col-md-4.text-end.phones {
    margin-top: 0px;
    padding-left: 0px;
  }
  .mt-20 {
    margin-top: 20px !important;
  }

  .greenbutton1 {
    background-color: #50d219 !important;
    color: #f4f8ff;
    padding: 2px 5px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
    align-items: center;
    text-align: center !important;
    margin-bottom: 15px;
  }

  .greenbutton1:hover {
    background-color: darkgreen;
  }
}

/* ✅ Extra Small Screens (Phones Only) */
@media (max-width: 480px) {
  .fs-55 {
    font-size: 1.8rem;
  }

  .fs-25 {
    font-size: 1rem;
  }

  .greenbutton {
    font-size: 14px;
    padding: 8px;
    width: 90%;
  }
}

/* .bubbles {
    background-color: var(--light_blue);
    color: #000000;
    border-radius: .4em;
    position: relative;
    width: 15%;
    padding: 1%;
}

.bubbles:after {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-right-color: #c6e3e6;
	border-left: 0;
	border-top: 0;
	margin-top: -7px;
	margin-left: -18px;
    border-radius: .4em;
    
} 

.bubbles1 {
	background-color: var(--light_blue);
    color: #000000;
    border-radius: .4em;
    position: relative;
    width: 15%;
    padding: 2%;
}

.bubbles1:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 30px solid transparent;
	border-left-color: var(--light_blue);
	border-right: 0;
	border-bottom: 0;
	margin-top: -15px;
	margin-right: -30px;
} */

/* FAQ Section: Aligning Both Containers */
.faq-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  padding: 10px;
  margin-right: 100px;
  padding-bottom: 0px;
  padding-top: 80px;
}

/* FAQ Box Styling */
.faq-box {
  position: relative;
  background: linear-gradient(145deg, #d9eef2, #e9f6f8);
  border-radius: 20px;
  /* padding: 30px; */
  padding-top: 50px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 90px;
  width: 42%;
  text-align: left;

  border: 3px solid var(--white-);
  margin-bottom: 130px;
}

/* ✨ Extra Outer Border Effect */
.faq-box::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border-radius: 40px;
  border: 100px solid var(--light_blue);

  z-index: -1;
}
.faq-box p {
  font-size: 18px;
  padding: 10px;
  text-align: justify;
}
.faq-box h1 {
  font-size: 53px;
}

/* Chat Bubble Container */
.chat-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 48%;
  margin-top: -60px;
  margin-bottom: 20px;
}

.message {
  border-radius: 20%;
  font-size: 20px;
  color: var(--black-);
  background-color: #cfe8eb;
  position: relative;
  text-align: center;
}

.pad1 {
  max-width: 50%;
  padding: 12px 0px;
}
.pad2 {
  max-width: 65%;
  padding: 12px 22px;
}
.pad3 {
  max-width: 70%;
  padding: 12px 22px;
}
.pad4 {
  max-width: 65%;
  padding: 12px 5px;
}
.pad5 {
  max-width: 72%;
  padding: 12px 22px;
}
.speech-bubble {
  position: relative;
  background: #cfe8eb;
  border-radius: 0.4em;
  text-wrap: nowrap;
}

.speech-bubble:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-right-color: #cfe8eb;
  border-left: 0;
  border-top: 0;
  margin-top: -20px;
  margin-left: -20px;
}

.message.left {
  align-self: flex-start;
  border-top-left-radius: 5px;
}

.message.right {
  align-self: flex-end;
  border-top-right-radius: 5px;
  margin-right: 15%;
}

.speech-bubble2 {
  position: relative;
  background: #cfe8eb;
  border-radius: 0.4em;
}

.speech-bubble2:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-left-color: #cfe8eb;
  border-right: 0;
  border-top: 0;
  margin-top: -20px;
  margin-right: -20px;
}

@media (min-width: 1024px) {
  .faq-section {
    margin: 0 auto !important;
  }
}

@media (max-width: 1024px) {
  /* 📌 Make FAQ and Chat Stack on Mobile */
  .faq-section {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-right: 0;
    padding: 20px;
  }
  @media (max-width: 1024px) {
    .answer {
      padding: 0px 20px 0px 0px !important;
    }
    .answer.open {
      padding: 0px 20px 0px 0px !important;
    }
    .question1 {
      padding: 0px 20px 0px 0px !important;
    }
  }
  /* 📌 Ensure Full Width for Mobile */
  .faq-box {
    width: 90%;
    padding: 30px;
    text-align: center;
    margin-bottom: 0;
  }

  .faq-box h1 {
    font-size: 40px; /* Reduce heading size */
  }

  .faq-box p {
    font-size: 16px;
  }

  /* 📌 Adjust Chat Container */
  .chat-container {
    width: 90%;
    gap: 15px;
    margin-top: 20px;
  }

  /* 📌 Chat Bubbles Full Width */
  .message {
    max-width: 100% !important;
    text-align: center;
    padding: 12px 18px;
    border-radius: 20;
  }
  .speech-bubble {
    text-wrap: wrap;
  }
}
/*
.message.left::before {
    content: "";
    position: absolute;
    top: 12px; 
    left: -15px; 
    width: 20px;
    height: 15px;
    background-color: #cfe8eb;
    border-radius: 50%;
    clip-path: polygon(0% 0%, 80% 50%, 0% 100%);
}


.message.right::after {
    content: "";
    position: absolute;
    top: 12px;
    right: -15px;
    width: 20px;
    height: 15px;
    background-color: #cfe8eb;
    border-radius: 50%;
    clip-path: polygon(100% 0%, 20% 50%, 100% 100%);
} */

.custom-button {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  background-color: #2aaf94;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
  margin-top: 50px;
}
.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* Hover Effect */
.custom-button:hover {
  background-color: #1b8b76;
  transform: scale(1.05);
}

/* ✅ Make the title and the box sit next to each other */
.odhgoi-container {
  display: flex;
  justify-content: space-between; /* Pushes elements apart */
  align-items: center; /* Vertically aligns elements */
  width: 100%;
  padding-bottom: 60px;
  padding-top: 70px;
}

/* Title: Positioned on the left */
.title {
  font-size: 45px;
  font-weight: bold;
  width: 30%; /* Gives the title a fixed space */
  text-align: left;
  margin-top: -400px;
  padding: 75px;
  margin-right: 0px;
  margin-left: 40px;
}

/* Guides Box: Positioned on the right */
.guides-box {
  position: relative;
  background: linear-gradient(145deg, #d9eef2, #e9f6f8);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding-top: 60px;
  padding-right: 500px;
  padding-bottom: 60px;
  padding-left: 70px;
  width: 60%; /* Adjust width for proper positioning */
  text-align: left;

  border: 3px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-right: -100px;
}

/* ✨ Extra Outer Border */
.guides-box::before {
  content: "";
  position: absolute;
  background-color: var(--light_blue);
  top: -25px;
  left: -25px;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 25px;
  border: 20px solid var(--light_blue);
  z-index: -1;
}

/* Individual Guide Items */
.guide-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Allows text to break to a new line */
}

.guide-icon {
  width: 50px;
  height: auto;
  margin-right: 10px;
  margin-top: -10px;
}
.guide-content {
  display: flex;
  flex-direction: column;
  flex: 1; /* Allows text to take full width */
  min-width: 550px; /* Ensures it doesn’t squeeze */
  padding-left: 30px;
}

.guide-content h3 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px; /* Adds more spacing */
  width: 100%; /* Ensures full width so text moves down */
  text-wrap: nowrap;
  margin-left: -60px;
}

/* Guide Description */
.guide-content p {
  font-size: 19px;
  color: var(--black-);
  margin-bottom: 15px;
}

.custom-button1 {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  background-color: #2aaf94;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
  margin-top: 10px;
}
.custom-button1:hover {
  background-color: #1b8b76;
  transform: scale(1.05);
}
.button-wrapper1 {
  display: flex;
  justify-content: left; /* Centers button horizontally */
  margin-top: 0px;
}

@media (max-width: 1024px) {
  /* 📌 Make Guides Section Stack on Mobile */
  .odhgoi-container {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 20px;
  }

  /* 📌 Ensure Full Width for Title */
  .title {
    width: 90%;
    font-size: 35px; /* Reduce size for smaller screens */
    text-align: center;
    padding: 20px;
    margin: 0;
  }

  /* 📌 Adjust Guides Box */
  .guides-box {
    width: 90%;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden; /* Prevents content from spilling out */
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: -100px;
  }

  /* 📌 Guide Items - Ensure Better Spacing */
  .guide-item {
    flex-direction: column; /* Stack icon + text */
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .guide-content {
    width: 100%; /* Ensures it doesn't exceed the box */
    min-width: auto;
    padding-left: 0;
    padding-right: 0;
    word-wrap: break-word; /* Ensures long words break correctly */
    overflow-wrap: break-word;
    box-sizing: border-box; /* Ensures padding doesn't expand width */
  }

  .guide-content h3 {
    font-size: 24px !important; /* Increase font size */
    font-weight: bold !important; /* Ensure it's bold */
    color: #212529 !important; /* Dark color for better contrast */
    text-align: center !important; /* Ensure it's centered */
    margin: 15px auto !important; /* Add spacing */
    display: block !important;
    white-space: normal !important; /* Prevents text from getting cut */
  }

  .guide-icon {
    display: none !important;
  }
  .custom-button1 {
    width: auto;
    max-width: 250px;
    text-align: center;
    margin: 10px auto;
  }

  /* Remove Unnecessary Extra Border */
  .guides-box::before {
    display: none;
  }
}

/* Section Styling */
#video {
  background-color: var(--bg-blue-color);
  text-align: center;
}

/* Title */
.video-title {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
  margin-left: 30px;
  padding: 50px;
}

/* Video Grid */
.video-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

/* Video Cards */
.video-card {
  background: linear-gradient(145deg, #d9eef2, #e9f6f8); /* Soft gradient */
  border-radius: 20px;
  padding: 5px;
  padding-top: 20px;
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* .video-placeholder {
  width: 100%;
  height: 200px; 
  overflow: hidden;
} */

.video-placeholder iframe {
  width: 100%;
  height: 100%;
  filter: none !important;
  backdrop-filter: none !important;
}
.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ff0033;
  color: white;
  font-size: 27px;
  width: 70px;
  height: 50px;
  border-radius: 24%;
  display: flex;
  border: none;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Important: allow the click to pass through to the card */
}

/* .video-card::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 25px;
    border: 3px solid rgba(100, 180, 200, 0.4);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: -1;
} */
.video-card:hover {
  cursor: pointer;
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* Video Placeholder */
.video-placeholder {
  width: 90%;
  height: 130px;
  background: rgb(0, 0, 0);
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Text Below Video */
.video-card p {
  font-size: 14px;
  font-weight: normal;
  color: var(--black-);
  text-align: center;
  margin-bottom: 0px;
}

/* Call-to-Action Link */
.link {
  display: inline-block;
  margin-top: 30px;
  background-color: white;
  color: black;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 40px;
  margin-top: 40px;
}

/* Hover Effect */
.link:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .video-grid {
    flex-direction: column;
    align-items: center;
  }

  .video-card {
    width: 80%;
  }
  .video-title {
    text-align: center !important;
    padding-left: 10px !important;
  }
}

#pliroforiako {
  padding-left: 50px;
  padding-top: 0px !important;
  padding-right: 0px !important;
}

#pliroforiako h1 {
  font-size: 56px;
}

#pliroforiako p {
  font-size: 26px;
}

.yellow_button {
  display: inline-block;
  margin-top: 30px;
  background-color: #f3c623;
  color: var(--white-);
  font-size: 18px;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 40px;
  margin-top: 40px;
  margin-left: 50px;
}

/* Hover Effect */
.yellow_button:hover {
  background-color: #e0b937;
  transform: scale(1.05);
}

.image5 {
  margin-right: -500px;
  padding: 0px !important;
}

@media (max-width: 1024px) {
  /* 📌 Center Everything in Mobile */
  #pliroforiako {
    text-align: center;
    padding: 20px !important; /* Adjust padding */
  }

  /* 📌 Adjust Heading */
  #pliroforiako h1 {
    font-size: 40px !important; /* Smaller size for mobile */
  }

  /* 📌 Adjust Paragraphs */
  #pliroforiako p {
    font-size: 20px !important; /* Reduce text size */
    margin: 10px auto; /* Center text */
    max-width: 90%;
  }

  /* 📌 Center Button */
  .yellow_button {
    display: block;
    margin: 20px auto !important; /* Center button */
    width: 50%; /* Adjust width */
    text-align: center;
  }

  /* 📌 Remove Image */
  .image5 {
    display: none !important;
  }
}

#qlogisti {
  text-align: right;
}

#qlogisti h1 {
  font-size: 58px;
  text-align: right;
  padding-right: 60px;
}
#qlogisti p {
  font-size: 26px;
  padding-right: 60px;
}

.blue_button {
  display: inline-block;
  margin-top: 30px;
  background-color: #25309b;
  color: var(--white-);
  font-size: 18px;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 40px;
  margin-top: 40px;
  margin-right: 110px;
}

/* Hover Effect */
.blue_button:hover {
  background-color: #052561;
  transform: scale(1.05);
}
.image6 {
  margin-left: -500px;
  padding: 0px !important;
}

@media (max-width: 1024px) {
  /* 📌 Center Everything in Mobile */
  #qlogisti {
    text-align: center !important;
    padding: 20px !important;
  }

  /* 📌 Adjust Heading */
  #qlogisti h1 {
    font-size: 40px !important; /* Smaller size for mobile */
    text-align: center;
    padding-right: 0px;
  }

  /* 📌 Adjust Paragraphs */
  #qlogisti p {
    font-size: 20px !important; /* Reduce text size */
    margin: 10px 10px 10px 20px; /* Center text */
    max-width: 90%;
    padding-right: 0px;
  }

  /* 📌 Center Button */
  .blue_button {
    display: block;
    margin: 20px auto !important; /* Center button */
    width: 50%; /* Adjust width */
    text-align: center;
  }

  /* 📌 Remove Image */
  .image6 {
    display: none !important;
  }
}

#footer {
  box-shadow: unset !important;
}
#offices {
  box-shadow: unset !important;
  margin-top: 20px;
}

#contact {
  box-shadow: unset !important;
  margin-top: 20px;
}

.social-link {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f8f9fa;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
  transform: scale(1.2) !important;
  background-color: #d4eeda;
}

#genq {
  margin: 0 !important;
  padding: 20px 0 50px 0 !important; /* Adjust top and bottom padding */
  background-image: url("/ergani/assets/imgs/bg3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: auto !important; /* Allow it to shrink */
  height: auto !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important; /* Moves content up */
  align-items: center;
  position: relative;
  overflow: hidden; /* Prevents unwanted scrolling */
}

#genq2 {
  margin: 0 !important;
  padding: 20px 0 50px !important; /* ✅ Reduce top padding, add extra bottom space */
  background-image: url("/ergani/assets/imgs/bg2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: auto !important; /* ✅ Allow the section to shrink dynamically */
  height: auto !important; /* ✅ Prevent unnecessary stretching */
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important; /* ✅ Move content higher */
  align-items: center;
  position: relative;
  overflow: hidden; /* Prevents unwanted scrolling */
}

@media (max-width: 1024px) {
  /* 📌 Make Section Cover Full Mobile Screen */
  #genq {
    width: 100vw !important;
    min-height: 100vh !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content */
    align-items: center;
    overflow: hidden !important; /* Prevents scrolling */
    padding: 20px;
  }
}
#genq3 {
  margin: 0 !important;
  padding: 20px 0 50px 0 !important; /* Added 50px bottom padding */
  background-image: url("/ergani/assets/imgs/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: auto !important;
  height: auto !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#genq32 {
  margin: 0 !important;
  padding: 20px 0 50px !important; /* ✅ Reduce top padding, add extra bottom space */
  background-image: url("/ergani/assets/imgs/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: auto !important; /* ✅ Allow the section to shrink dynamically */
  height: auto !important; /* ✅ Prevent unnecessary stretching */
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important; /* ✅ Move content higher */
  align-items: center;
  position: relative;
  overflow: hidden; /* Prevents unwanted scrolling */
}

@media (max-width: 1024px) {
  /* 📌 Make Section Cover Full Mobile Screen */
  #genq {
    width: 100vw !important;
    min-height: 100vh !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content */
    align-items: center;
    overflow: hidden !important; /* Prevents scrolling */
    padding: 20px;
  }
}
#offices,
#contact,
#footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.container1 {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}
.container2 {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.header2 {
  display: flex;
  align-items: center; /* Align items vertically */
  justify-content: space-between; /* Spread content across */
  width: 100%;
  padding: 20px 40px;
  position: relative;
}

.menou2 {
  display: flex;
  justify-content: center;
  gap: 30px; /* Space between buttons */
  font-weight: bold;
  padding-left: 250px;
  text-wrap: nowrap;
}

.buttons2 {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  color: black;
}
.buttons3 {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: black;
}

.buttons2:hover {
  color: #50d219;
}
body.modal-open {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .search {
    top: 43px !important;
  }
  .search.modal-active {
    top: 115px !important;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.modal-overlay.active {
  display: block;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid #000; /* Black border */
  border-radius: 30px; /* Round edges */
  padding: 8px 15px;
  background-color: white;
  width: 250px; /* Adjust width */
  align-content: center;
  right: 40px; /* Move to the right */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  transition: width 0.4s ease, opacity 0.1s ease;
}

.search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  background: transparent;
}

.search svg {
  color: black;
  font-size: 16px;
  cursor: pointer !important;
}
/* .search.closing {
  transform: translate(0%, 0%) scale(0.9);
  opacity: 0.8;
  transition: all 0.8s ease;
} */

.search.modal-active {
  position: fixed !important;
  top: 20%;
  left: 0%;
  /* transform: translate(-50%, -50%); */
  width: 21%; /* Adjust width */
  background-color: white;
  z-index: 1001;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  padding: 10px 17px;
  border-radius: 30px;
  transition: all 0.7s ease;
  margin-bottom: 20px;
}
body.modal-open {
  overflow: hidden;
}
.modal-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#search-results {
  display: none;
  color: red;
  margin-top: 5px; /* Small space below input */
  text-align: left;
  width: 100%; /* Ensure it matches the input width */
  position: absolute;
  left: 0;
  top: 100%; /* Position it right below the input */
  background-color: white; /* Match the search box */
  border: 1px solid #ddd; /* Slight border to separate it */
  padding: 5px 10px;
  z-index: 1000; /* Keep it on top */
  font-size: 14px;
  border-radius: 4px;
}

.search-arrows {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  align-items: center;
  align-items: center; /* Center them */
  margin-left: 5px; /* Add space between input and buttons */
  gap: 0 !important;
}

#previousMatch,
#nextMatch {
  all: unset;
  cursor: pointer;
  font-size: 2px;
  line-height: 1 !important;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

#previousMatch i,
#nextMatch svg {
  font-size: 15px; /* Adjust icon size */
  line-height: 1; /* Prevent extra spacing */
  margin: -2px 0; /* Force icons closer */
  display: block;
}
/* Show overlay when modal is active */
.modal-overlay.active {
  display: block;
}

.generot {
  font-size: 42px;
  font-weight: 600;
  padding-bottom: 10px !important;
}

.allq {
  padding-left: 30px;
  padding-top: 45px;
  padding-bottom: 50px;
}

.p1 {
  font-size: 21px;
  padding-top: 10px;
  margin-bottom: 0px !important;
}
.p2 {
  font-size: 16px;
  font-style: italic;
  padding-top: 0px !important;
  margin-top: 0px !important;
}
.p2 {
  display: block !important;
}

.mobile-menu {
  display: none;
}
.mobile-menu-container {
  display: none;
}
.menu-icon {
  display: none !important;
}
@media (max-width: 1024px) {
  /* 📌 Make the Section Cover Full Screen */
  #genq3 {
    width: 100vw !important;
    min-height: 100vh !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content */
    align-items: center;
    overflow: hidden !important; /* Prevents scrolling */
    padding: 20px;
  }

  /* 📌 Ensure Content is Centered */
  .container1 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center;
  }

  /* 📌 Center and Adjust Header */
  .header2 {
    display: flex !important;
    flex-direction: row !important; /* Ensure horizontal layout */
    justify-content: space-between !important; /* Spread items apart */
    align-items: center !important; /* Vertically align items */
    padding: 10px 20px !important;
    width: 100% !important;
  }

  /* 📌 Ensure Logo Stays on the Left */
  .header2 img {
    max-width: 200px !important; /* Keep original size */
    height: auto !important;
  }

  /* Hide Desktop Menu */
  .menou2 {
    display: none !important;
  }

  /* Show Mobile Menu Button */
  .mobile-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }

  /* Style the Menu Icon */
  .menu-icon {
    display: flex !important; /* Ensures visibility */
    font-size: 25px !important; /* Increase size */
    cursor: pointer;
    color: black;
  }

  /* Mobile Menu (Hidden by Default) */
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 10px;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    z-index: 999;
  }

  /* Show Menu When Active */
  .mobile-menu.active {
    display: flex;
  }

  /* Style Mobile Menu Buttons */
  .mobile-menu button {
    width: 100%;
    padding: 5px;
    border: none;
    background: none;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
  }

  /* Hover Effect for Mobile Menu */
  .mobile-menu button:hover {
    background-color: #f1f1f1;
  }
  /* 📌 Center Search Bar */
  .search {
    width: 70% !important; /* Make it responsive */
    max-width: 400px;
    justify-content: center;
    right: 0;
  }
  .search.container {
    margin-top: 20px;
  }
  .search.modal-active {
    position: fixed !important;
    top: 26vh; /* Keeps it at a stable position */
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Adjust width for small screens */
    max-width: 400px;
    background-color: white;
    z-index: 1001;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 30px;
  }
  .search input {
    touch-action: manipulation; /* Prevents double-tap zoom */
    font-size: 16px; /* Avoids zoom-in on focus */
  }

  /* 📌 Adjust General Questions Section */
  .allq {
    padding: 20px;
    text-align: center;
  }

  .generot {
    font-size: 36px !important;
  }

  .p1 {
    font-size: 18px !important;
    text-wrap: wrap; /* Allow text wrapping */
  }

  .p2 {
    font-size: 14px !important;
  }

  /* 📌 Center and Adjust Search Bar */
  .search2 {
    width: 70% !important; /* Make it responsive */
    max-width: 400px;
    justify-content: center;
    margin: 20px 10px;
  }

  /* 📌 Make Boxes Stack Vertically */
  .boxes {
    display: flex !important;
    flex-direction: column; /* Stack items in a column */
    align-items: center !important;
    gap: 15px !important; /* Space between items */
    max-width: 80% !important;
  }

  .boxes div {
    width: 100% !important;
    max-width: 350px !important; /* Ensure reasonable width */
    text-align: center !important;
    padding: 20px !important;
    font-size: 16px !important;
    cursor: pointer !important;
  }
  .pt {
    font-size: 35px !important;
  }
}

.pt {
  font-size: 43px;
  font-weight: 600;
}

.mt-4 {
  margin-top: 40px;
}

.search2 {
  display: flex;
  align-items: center;
  border: 2px solid #000; /* Black border */
  border-radius: 30px; /* Round edges */
  padding: 10px 19px;
  background-color: white;
  width: 320px; /* Adjust width */
  align-content: center;
  right: 40px; /* Move to the right */
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
}

.search2 input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 18px;
  background: transparent;
}

.search2 svg {
  color: rgb(0, 0, 0);
  font-size: 18px;
  cursor: pointer !important;
}

.boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px; /* Space between boxes */
  justify-content: center;
  align-items: center;
  max-width: 75%; /* Adjust for responsiveness */
  margin: 30px auto; /* Center the grid */
}

.boxes div {
  background-color: rgba(173, 216, 230, 0.3); /* Light cyan background */
  padding: 34px 20px;
  text-align: center;
  border-radius: 30px; /* Rounded edges */
  font-size: 18px;
  color: black;
  min-width: 180px;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.boxes div:hover {
  background-color: rgba(173, 216, 230, 0.5);
  cursor: pointer;
  transform: scale(1.05);
}

#syxnesq {
  text-align: center;
  padding: 40px 50px;
}

h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

.questions {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  grid-template-rows: repeat(4, auto); /* Four rows */
  gap: 20px 40px; /* Adjust row/column spacing */
  max-width: 1000px; /* Adjust width */
  margin: auto;
}

/* Force correct positioning */
#q1 {
  grid-column: 1;
  grid-row: 1;
}
#q2 {
  grid-column: 1;
  grid-row: 2;
}
#q3 {
  grid-column: 1;
  grid-row: 3;
}
#q4 {
  grid-column: 1;
  grid-row: 4;
}
#q5 {
  grid-column: 2;
  grid-row: 1;
}
#q6 {
  grid-column: 2;
  grid-row: 2;
}
#q7 {
  grid-column: 2;
  grid-row: 3;
}
#q8 {
  grid-column: 2;
  grid-row: 4;
}

.question-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* Needed for absolute positioning of the number */
  width: 100%; /* Ensures proper width */
}

.number {
  position: absolute;
  top: 50%;
  left: 10px;
  background-color: #3ca49c;
  color: white;
  font-size: 16px;
  font-weight: bold;
  width: 35px;
  height: 35px;
  padding: 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 20px; /* Moves the number slightly higher */
  left: 10px;
  transform: translateX(-50%); /* Ensures it stays centered */
}

.question {
  background-color: #aad6d7;
  padding: 15px 20px 15px 60px; /* Left padding adjusted for number */
  border-radius: 22px;
  font-size: 16px;

  color: black;
  text-align: left;
  width: 100%; /* Ensures all boxes are the same width */
  min-height: 85px; /* Ensures all question boxes are the same height */
  display: flex;
  align-items: center;
}

@keyframes translateX {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.hidden-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  padding-left: 55px;
  padding-right: 30px;
  color: #5a5a5a;
  text-align: justify;
  pointer-events: none;
  /* color: #222;  */
  /* background-color: #f5f5f5;  */
}
.hidden-text.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-top: 7px;
}

#syxnesq button {
  all: unset; /* Resets all styles */
  display: flex; /* Allows alignment with number and text */
  align-items: center; /* Centers the number and text */
  width: 100%; /* Makes the button fill its container */
  cursor: pointer; /* Ensures it still looks clickable */
}

@media (max-width: 1024px) {
  /* 📌 Stack Questions in a Column */
  .questions {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center content */
    gap: 15px; /* Reduce spacing for better layout */
    width: 100%;
    max-width: 90%; /* Prevents too much width */
  }

  .question-container {
    width: 100%;
    max-width: 400px; /* Ensures proper width */
    position: relative;
  }

  /* 📌 Ensure Number Stays on the Left */
  .number {
    position: absolute;
    top: 50%;
    left: 10px; /* Adjusted for spacing */
    transform: translateY(-50%); /* Center number vertically */
    z-index: 10; /* Ensures it stays above text */
  }
  /* 📌 Ensure Question Text is Properly Aligned */
  .question {
    padding: 15px 20px 15px 50px; /* Enough left space for number */
    font-size: 18px;
    text-align: left;
    min-height: 75px;
    position: relative;
  }
  .hidden-text {
    display: none;
    margin-top: 10px;
    position: relative; /* Ensures it does not affect the number */
  }
}

.oftenq {
  padding-left: 30px;
  padding-top: 20px;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

#footer {
  box-shadow: unset !important;
}
#offices {
  box-shadow: unset !important;
  margin-top: 20px;
}

#contact2 {
  box-shadow: unset !important;
  margin-top: 20px;
}

.social-link {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f8f9fa;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
  transform: scale(1.2) !important;
  background-color: #d4eeda;
}
#offices,
#contact2,
#footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.text-center {
  margin-bottom: 0px !important; /* Remove extra space below heading */
  position: relative !important;
}

.row.pb-5.gy-4 {
  margin-top: 120px !important; /* Move the row up */
  padding-top: 0px !important;
  position: relative !important;
}
/* Section Styling */
#contact2 {
  text-align: center;
  padding: 50px 0;
  margin-top: 70px !important;
}

/* Heading */
.text-center h2 {
  font-size: 40px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 40px;
}
.text-center h4 {
  font-size: 25px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2.5rem;
}

.boxes2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px;
}

/* Individual Box Styling */
.box2 {
  background: white !important;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px !important;
  padding: 40px !important;
  width: 400px;
  min-height: 250px;
  text-align: center !important;
  display: flex;
  flex-direction: column;
}

/* Headings inside boxes */
.box2 h3 {
  font-size: 25px;
  color: #000000;
  margin-bottom: 10px;
}

/* Text inside boxes */
.box2 p {
  font-size: 16px;
  color: #666;
  /* margin-top: 20px; */
}

/* Links */
.box2 a {
  text-decoration: none;
  text-align: center !important;
}
.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.5;
  justify-content: space-between;
  margin-top: 38px;
  margin-bottom: 39px;
}
.mail {
  margin-top: 20px;
  margin-bottom: 74px;
}

.email h3 {
  margin-top: 20px;
}
.email {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.web {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.web h3 {
  margin-top: 40px;
}
.phone {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0px;
}
.phone_icon {
  font-size: 30px;
}
.mail_icon {
  font-size: 30px;
}
.web_icon {
  font-size: 30px;
}
.btn {
  display: block; /* Makes the button take full width */
  background: #61ce70;
  color: white;
  padding: 8px 20px !important;
  border-radius: 15px !important;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  white-space: nowrap;
  min-width: unset !important;
  width: 75% !important;
  text-align: center;
  margin: 0 auto !important; /* Centers horizontally */
}

.btn:hover {
  background: #4caf50;
}
.box2 a {
  display: block;
  line-height: 1.1 !important;
}

.box2 a:last-child {
  margin-bottom: 0 !important; /* Remove extra bottom margin */
}
.icon {
  font-size: 35px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .boxes2 {
    flex-direction: column;
    align-items: center;
    gap: 30px; /* adds spacing between stacked boxes */
    padding: 10px 15px; /* mobile-friendly padding */
  }

  .box2 {
    width: 100%; /* full width on mobile */
    max-width: 360px; /* but not too wide */
    padding: 30px 20px !important; /* better internal padding */
  }

  .box2 h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .box2 p,
  .box2 a {
    font-size: 15px;
  }

  .icon {
    font-size: 30px; /* scale down icon a bit */
    margin-bottom: 10px;
  }

  .btn {
    width: 100% !important;
    font-size: 15px;
    padding: 10px 0 !important;
  }
}
