/* ============================================= import ======================================== */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* =========================================General Styling================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  color: black;
}

p {
  color: black;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #f0e6e6;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #0056b3;
}

/* ==========================================PreLoadPage========================================= */

#preloader {
  background: whitesmoke;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.star-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}

.animated-star {
  width: 30px;
  height: 30px;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===========================================Top Bar Above Navbar=============================== */
/* Font Awesome icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

.top-bar {
  width: 100%;
  background: linear-gradient(90deg, hsla(0, 25%, 90%, 1) 0%, hsla(212, 100%, 14%, 1) 0);
  color: #ffffff;
  padding: 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 2000px;
}

.top-bar .contact-information span {
  margin-right: 10px;
}

.top-bar .social-media {
  display: flex;
  align-items: center;
}

.top-bar .social-name {
  display: inline-block;
}

.logo-icon-top {
  width: 130px;
  height: auto;
}

body.scrolled .top-bar {
  transform: translateY(-100%);
}

body.scrolled header {
  top: 0;
}

body.at-top .top-bar {
  transform: translateY(0);
}

body.at-top header {
  top: 50px;
}

/*============================================================ header ======================================*/
header {
  position: fixed;
  width: 100%;
  top: 50px;
  left: 0;
  z-index: 99;
  background-color: #2c2b2b46;
  backdrop-filter: blur(10px);
  padding: 5px;
  transition: top 0.3s ease;
}

.logo-icon {
  width: 300px;
  height: auto;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 2000px;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  position: relative;
  padding: 10px 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  overflow: hidden;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #007bff;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

header nav ul li a:hover {
  color: #007bff;
}

header nav ul li a:hover::after {
  width: 100%;
}

header nav ul li a:active {
  transform: scale(0.95);
}

/* Mobile styling */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.Social-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

header nav ul {
  flex-direction: row;
}


/* ------------------------------------------------------------sERVICE ---------------------------------- */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 2px solid black;
}

.dropdown-content {
  width: 900px;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 4px;
  max-width: 900vw;
  max-height: 80vh;
  overflow-y: auto;
}

.column {
  width: 180px;
  margin-bottom: 20px;
}

.column h4 {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.column a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.column p {
  color: grey;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
  font-family: "Oswald", sans-serif;
}

.column a:hover {
  color: #007bff;
}

@media (max-width: 768px) {
  .dropdown-content {
    max-width: 100vw;
    left: 0;
    transform: none;
    padding: 15px;
  }

  .column {
    width: 100%;
  }
}


/* -------------------------------------------knowledge bank---------------------------------- */

.KB-dropdown {
  position: relative;
}

.KB-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: -400%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 2px solid black;
  width: 850px;
  height: auto;
}

.KB-dropdown:hover .KB-dropdown-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 4px;
  max-width: 900vw;
  max-height: 80vh;
  overflow-y: auto;
}

.KB-column {
  width: auto;
}

.KB-column h4 {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
}

.KB-column a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.KB-column p {
  color: grey;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
  font-family: "Oswald", sans-serif;
}

.KB-column p:hover {
  color: #000;
}

@media (max-width: 768px) {
  .KB-dropdown-content {
    max-width: 100vw;
    left: 0;
    transform: none;
    padding: 15px;
  }

  .KB-column {
    width: 100%;
  }
}

.toggle-point {
  cursor: pointer;
  font-size: 16px;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.toggle-point:hover {
  color: #0056b3;
}

.sub-points {
  margin-left: 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}

.sub-points a {
  text-decoration: none;
  color: #555;
  display: block;
  margin: 5px 0;
}

.sub-points a:hover {
  color: #000;
}

/* =============================================Home Section====================================== */
#home {
  background: url('IMAGE/BG1.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
}

#home .home-content h2 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 3rem;
  animation-delay: 0.5s;
  text-align: left;
  color: #28276d;
}

#home .container{
  max-width: 1400px;
}

#home .home-content p {
  text-align: left;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 5px;
  animation-delay: 1s;
  color: #28276d;
}

/* Company Summary */
/* General Styles */
#company-summary {
  padding: 40px 0;
  background-color: #f9f9f9;
}

#company-summary .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#company-summary h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: #213993;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.summary-content {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  justify-content: space-between;
}

.summary-image {
  flex: 1 1 45%;
  max-width: 45%;
  /* margin-right: 5%; */
}

.summary-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.summary-text {
  flex: 1 1 50%;
  max-width: 50%;
}

.summary-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.summary-text p strong{
  background: #3e60db;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.summary-content a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1rem;
  color: #faf7f7;
  background-color: #000000;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.summary-content a:hover {
  background: rgb(250, 249, 249);
  color: rgb(0, 0, 0);
  border-style: groove;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#home .home-content h2,
#home .home-content p {
  animation: fadeInUp 1.5s ease-out;
}


/* Goals Summary Section */
#goals-summary {
  background-color: #fff;
  padding: 60px 0;
}

#goals-summary .container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

#goals-summary h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  letter-spacing: 2px;
  background: #213993;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.goals-content {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  width: 100%;
  padding-bottom: 20px;
  user-select: none;
}

.goals-content::-webkit-scrollbar {
  display: none;
}

.goal {
  flex: 0 0 auto;
  width: 20%;
  height: auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  font-family: "Oswald", sans-serif;
}

.goal:hover {
  transform: translateY(5px);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
}

.goal img {
  width: 60%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.goal:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}

.goal h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}

.goal a {
  font-size: 1.5rem;
  color: #0077b5;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.goal a:hover {
  color: #005582;
  transform: scale(1.2);
}

/* Swipe Buttons */
.swipe-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.swipe-button {
  background-color: #0077b5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swipe-button:hover {
  background-color: #005582;
  transform: scale(1.1);
}

.goals-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* Add some space between goals */
}

.goal {
  flex: 1;
  min-width: 250px;
  /* Ensures a minimum width */
  margin: 10px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.goal h3 {
  color: #213993;
  /* background-color: #00A9FF; */
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.goal p {
  font-size: 1rem;
  color: #555;
}


/* Get In Touch Section */
#get-in-touch {
  padding: 60px 20px;
  background-color: #f1f1f1;
}

#get-in-touch .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#get-in-touch h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #333;
}

.get-in-touch-content {
  display: flex;
  justify-content: space-between;
  padding: 7% 0;
  flex-wrap: nowrap;
}

.company-details {
  width: 48%;
  text-align: left;
  color: #555;
  margin-bottom: 40px;
}

.company-details h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
}

.company-details p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.company-details ul {
  list-style-type: none;
  padding: 0;
}

.company-details ul li {
  margin-bottom: 10px;
  font-size: 1.2rem;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-form {
  width: 48%;
  max-width: none;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #555;
}

.form-group input, textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.submit-btn {
  padding: 12px 20px;
  font-size: 1rem;
  color: white;
  background-color: rgb(3, 3, 3);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background: white;
  color: black;
  border-style: groove;
}


/* =====================================Services Section=================================== */
#services {
  padding: 10% 0;
}

#services .container{
  max-width: 1600px;
}


.services-layout {
  display: flex;
}

.services-list {
  width: 25%;
  height: auto;
  position: sticky;
  top: 100px;
  margin-right: 20px;
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-list h2 {
  font-family: "Montserrat", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #213993;
}

.services-list ul {
  list-style: none;
  padding: 0;
}

.services-list ul li {
  font-family: "Montserrat", serif;
  margin-bottom: 15px;
  color: #213993;
}

.services-list ul li a {
  color: #213993;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-list ul li a:hover {
  color: skyblue;
}

.services-list ul li a.active {
  color: #3e60db;
  font-weight: bold;
} 

.service-details {
  width: 75%;
}

.service-item {
  margin-bottom: 40px;
}

.service-item h2 {
  color: #213993;
}

.service-item p {
  font-family: "Montserrat", serif;
  font-size: 1rem;
  color: #666;
  text-align: justify;
}

.service-item p strong{
  color: #3e60db;
}

.service-item ul li {
  color: #000;
  text-align: justify;
}

.service-item ul li strong{
  color: #3e60db;
}

.dropdown-toggle {
  display: none;
}

/* =========================================About Section================================ */
#about-us {
  padding-top: 10%;
}

#about-team {
  background-color: #e0e0e0;
}

#goals {
  background-color: #e0e0e0;
}

section {
  font-family: "Montserrat", sans-serif;
  padding: 50px 0;
  background: #ffffff;
}

section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  text-align: center;
  color: #333333;
}

section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  text-align: justify;
}

section ul.goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

section ul.goals-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

section ul.goals-list li:before {
  content: "✔";
  color: #007bff;
  position: absolute;
  left: 0;
  top: 0;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.content .text {
  flex: 1;
  order: 1;

}

.content .image {
  flex: 1;
  order: 2;
  text-align: center;

}

.content .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

#about-team .content .image,
#goals .content .image {
  order: 1;
}

#about-team .content .text,
#goals .content .text {
  order: 2;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#Our-goals {
  background-color: #e0e0e0;
}

#Our-goals .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 250px;
}

.goals-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;  
  margin-top: 20px;
}

.Our-goal {
  position: relative;
  width: 200px;
  height: 150px;
  background: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Our-goal:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.Our-goal strong {
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.Our-goal:hover strong {
  opacity: 0;
}

.goal-detail {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(3, 27, 115, 0.9);
  color: #fff;
  font-size: 14px;
  padding: 15px;
  text-align: center;
  transform: translateY(0);
  transition: bottom 0.4s ease-in-out;
}

.Our-goal:hover .goal-detail {
  bottom: 0;
}

/* ===========================================Carrer Section================================ */
#practiceAreas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

#practiceAreas label {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #555;
  padding: 10px 15px;
  background: #f9f9f9;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  cursor: pointer;
}

#practiceAreas label:hover {
  background: #e9ecef;
  border-color: #ccc;
}

#practiceAreas input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.form-container {
  background: #ffffff;
  padding: 150px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.form-container h1,
.form-container h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #222;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}

.form-container label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f8f9fa;
  transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  border-color: #28a745;
  outline: none;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.25);
}

.form-container button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-container button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.form-container button:active {
  background-color: #1e7e34;
  transform: translateY(0);
}

/* ============================ Contact Section ============================= */
#contact {
  background: #f1f1f1;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 7% 0;
  max-width: 1600px;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 300px;
  margin: 20px;
}

.contact-form .btn {
  border-radius: 100px;
  background: black;
  color: white;
}

.contact-form .btn:hover {
  background: white;
  color: black;
  border-style: groove;
}

.contact-form {
  max-width: 500px;
  margin-right: 5%;
}

.contact-form label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #555;
}

.contact-info .social-media-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #afc0d3;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.contact-info .social-media-icons a:hover {
  color: #0056b3;
}

#map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* Goals Summary Section */
#Branches {
  padding: 60px 20px;
  background-color: #ffffff;
}

#Branches .cont-container {
  text-align: center;
}

#Branches h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #333333;
}

.cont-goals-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.cont-goal {
  flex: 1 1 calc(25% - 20px);
  max-width: 300px;
  background: rgb(252, 252, 252);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
}

.cont-goal:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #ff6600;
}

.cont-goal h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #ff6600;
  font-weight: 600;
}

.cont-goal p {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* ========================================== quick-connect ================================ */

.quick-connect {
  position: fixed;
  bottom: 25%;
  right: 0px;
  width: 280px;
  max-width: 90%;
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.quick-connect.hidden {
  transform: translateX(100%);
}

.quick-icon {
  display: none;
  position: fixed;
  bottom: 20px;
  left: -45px;
  background-color: #0F4C75;
  color: white;
  padding: 10px;
  height: 130px;
  width: 40px;
  border-radius: 20px 0 0 20px;
  cursor: Auto;
  z-index: 1001;
  font-size: 25px;
}

.quick-form {
  display: flex;
  flex-direction: column;
}

.quick-form h2 {
  margin-top: 0;
  font-size: 18px;
  color: #0F4C75;
}

.quick-form label {
  margin: 10px 0 5px;
  font-size: 14px;
  color: #333;
}

.quick-form input {
  width: 100%;
  height: 30px;
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.quick-form textarea {
  width: 100%;
  padding: 6px;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.quick-form button {
  width: 100%;
  background-color: #0F4C75;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.rotate-right {
  user-select: none;
  color: white;
  transform: rotate(90deg);
  transform-origin: left bottom;
  white-space: nowrap;
  font-size: 15px;
  position: relative;
  bottom: 22px;
}

.quick-form button:hover {
  background-color: #0a3a57;
}

.quick-connect {
  transform: translateX(100%);
}

.quick-icon {
  display: block;
}

@media (max-width: 768px) {
  .quick-connect {
    transform: translateX(100%);
  }

  .quick-icon {
    display: block;
  }
}

/* ==========================================Footer========================================== */

footer {
  background: linear-gradient(90deg, hsla(0, 25%, 90%, 1) 0%, hsla(212, 100%, 14%, 1) 0);
  color: white;
  padding: 4vw 0 5vh 0;
  text-align: left;
}

.footer-container {
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Oswald", sans-serif;
}

.footer-logo img {
  display: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-section {
  flex-grow: 1;
}

.header-name {
  flex: 15%;
  font-family: "Kanit", sans-serif;
  font-size: calc(17px + 1vw + 1vh);
  position: relative;
  bottom: 10px;
  left: 120px;
}

.services {
  flex: 20%;
  font-family: "Kanit", sans-serif;
  font-size: calc(17px + 1vw + 1vh);
  position: relative;
  bottom: 10px;
  left: 120px;
}

.contact-map {
  flex: 25%;
  font-family: "Kanit", sans-serif;
  font-size: calc(17px + 1vw + 1vh);
  position: relative;
  bottom: 10px;
  left: 120px;
}

.connect-with-us {
  flex: 40%;
  font-family: "Kanit", sans-serif;
  font-size: calc(17px + 1vw + 1vh);
  position: relative;
  bottom: 10px;
  left: 120px;
}

.connect-with-us p a i {
  padding-bottom: 30px;
  margin-right: 20px;
  font-size: 40px;
}

.contact-map,
.fab {
  font-size: 30px;
}

.footer-section h3 {
  font-size: 25px;
  font-family: "Kanit", sans-serif;
  margin-bottom: 15px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 5px;
}

.footer-section p,
.footer-section ul {
  font-family: "Kanit", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  background: #8c8eee;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-map a i {
  color: #000000;
}

.map-container {
  margin-top: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.footer-bottom p {
  text-align: center;
  margin-top: 10px;
  padding-top: 50px;
  font-size: 14px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.fa-instagram {
  background: linear-gradient(4500deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.fa-linkedin {
  background: #0a66c2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.business-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.business-info .info-item .material-icons {
  margin-right: 15px;
  font-size: 20px;
  flex-shrink: 0;
}

.business-info .info-item p {
  margin: 0;
  line-height: 1.5;
}

.footer-section h3 .icon{
  display: none;
}

/* ---------------------------------------------------Gallery--------------------------- */

#Gallery{
  padding-top: 150px;
}

.Gallery-container {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}

#Gallery .container h3{
  background-color: rgb(226, 194, 199);
  font-size: 150px;
  text-align: center;
  font-family: "Fleur De Leah", cursive;
  font-weight: 400;
  font-style: normal;
}

#Diwali .container h3{
  background-color: rgb(226, 194, 199);
  font-size: 150px;
  text-align: center;
  font-family: "Fleur De Leah", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Image Containers */
.img1 {
  padding: 10px;
  grid-column: span 2;
  grid-row: span 1;
}

.img2 {
  padding: 10px;
  grid-column: span 1;
  grid-row: span 1;
}

.img3 {
  padding: 10px;
  grid-column: span 1;
  grid-row: span 1;
}

.img4 {
  padding: 10px;
  grid-column: span 2;
  grid-row: span 1;
}

.img5 {
  padding: 10px;
  grid-column: span 3;
  grid-row: span 1;
}

.img6 {
  padding: 10px;
  grid-column: span 1;
  grid-row: span 2;
}

.img7 {
  padding: 10px;
  grid-column: span 1;
  grid-row: span 2;
}

.img8 {
  padding: 10px;
  grid-column: span 1;
  grid-row: span 2;
}

.img9 {
  padding: 10px;
  padding-bottom: 0%;
  grid-column: span 2;
  grid-row: span 3;
}

.img10 {
  padding: 10px;
  grid-column: span 1;
  grid-row: span 1;
}

.img11 {
  padding: 10px;
  padding-bottom: 0%;
  grid-column: span 1;
  grid-row: span 2;
}

.Gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.Gallery-container .img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  font-family: Arial, sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 0 0 8px 8px;
}

.Gallery-container div {
  position: relative;
  overflow: hidden;
}

.Gallery-container div:hover .img-info {
  opacity: 1;
  transform: translateY(0);
}


