@charset "UTF-8";
:root {
  /* ==================================================COLORS */
  --clr-main-grey: rgb(23, 25, 28);
  --clr-sec-grey: rgb(34, 38, 48);
  --clr-sec-greyTP: rgba(34, 38, 48, 0.411);
  --clr-roseGold1: rgb(255, 143, 110);
  --clr-roseGold: orange;
  --clr-roseGold2: rgb(253, 88, 37);
  --clr-btn-blu: rgb(86, 118, 255);
  --clr-light-grey: rgb(96, 96, 96);
  --clr-font-main1: #0034dda7;
  --clr-font-main: #003567;
  --clr-font-maintp: #2d6eaa;
  --clr-main-red: rgb(34, 38, 48);
  --clr-B4: #b95404;
  --clr-B4tp: #a25d24;
  --clr-pri-blu: #4ea6e8;
  --pixel-size: 2px;
  /* ===================================================LINE HEIGHT */
  --lh-default: 125%;
  /* ===================================================RESPONSOVE FONT SIZE */
  --fs-responsive: clamp(2rem, 5vw, 4rem);
}

/* ========================================================Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================================Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  display: inline-block;
  padding: 1rem;
}

.font-size {
  font-size: clamp(1rem, 0.875rem + 0.42vw, 1.25rem);
  /* Static values */
  /* Calculated values */
}

a {
  text-decoration: none;
  color: var(--clr-roseGold);
  filter: drop-shadow(0.5px 0.5px 0.5px black);
  font-size: 1.2em;
}
a:hover {
  color: white;
}

/*========================================================== Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/*========================================================== Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  background-color: var(--clr-sec-grey);
  letter-spacing: 1px;
  overflow-x: hidden;
}

/*============================= A elements that don't have a class get default styles */
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.5ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.5ms !important;
    scroll-behavior: auto !important;
  }
}
/* ................................................ */
/*========================================================= FADE ANIMATION */
.fadeIn_up {
  transform: translateY(100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_up .show {
  transform: translateY(0px);
  /* transition: ease; */
  opacity: 1;
}

.fadeIn_down {
  transform: translateY(-100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_down .show {
  transform: translateY(0px);
  /* transition: ease; */
  opacity: 1;
}

.fadeIn_left {
  transform: translateX(100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_left .show {
  transform: translateX(0px);
  /* transition: ease; */
  opacity: 1;
}

.fadeIn_right {
  transform: translateX(-100px);
  transition: 1s;
  opacity: 0;
}

.fadeIn_right .show {
  transform: translateX(0px);
  /* transition: ease; */
  opacity: 1;
}

.show {
  transform: translateX(0px);
  opacity: 1;
  background: linear-gradient(to top, rgba(128, 128, 128, 0.306), rgba(255, 255, 255, 0.179)), url(./public/king.png);
}

.backgroundRemove img {
  mix-blend-mode: color-burn;
}

.stone {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 30% 30%, #d3d3d3, #808080, #4d4d4d);
  border-radius: 50%;
  box-shadow: inset -10px -10px 15px rgba(255, 255, 255, 0.5), inset 10px 10px 20px rgba(0, 0, 0, 0.3), 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.parent {
  width: 300px;
  height: 300px;
  perspective: 10px;
}

.child {
  width: 300px;
  height: 300px;
  background-color: transparent;
  animation-timeline: view(block);
  animation-name: scroll;
  animation-range: entry -10% contain 20%;
  text-align: center;
  overflow: hidden;
  font-size: 30px;
}

@keyframes scroll {
  0% {
    transform: rotateX(-400deg);
    font-size: 300px;
  }
  100% {
    transform: rotateX(0deg);
    font-size: 30px;
  }
}
.bg-parallaxImg {
  background-image: url("#");
  background-size: cover;
  height: 500px;
}

.blur {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* =====================================================GRID COLUMNS */
.grid {
  display: grid;
}

.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.col-8 {
  grid-template-columns: repeat(8, 1fr);
}

.row-2 {
  /* grid-auto-rows: repeat(2,1fr); */
  grid-template-rows: repeat(2, 1fr);
}

.row-3 {
  grid-template-rows: repeat(3, 1fr);
}

.row-4 {
  grid-template-rows: repeat(4, 1fr);
}

.flex {
  display: flex;
  /* gap: 1rem; */
}

.fd-column {
  flex-direction: column;
}

@media only screen and (max-width: 890px) {
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8 {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}
/* =======================================================ALIGN ITEMS CENTER */
.xy-center {
  align-items: center;
  justify-content: center;
}

.y-center {
  justify-content: center;
}

.x-center {
  align-items: center;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

.gap3 {
  gap: 3rem;
}

/* ========================================================TEXT CENTER */
.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.cta {
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  background-color: transparent;
  border: 0.6px solid black;
  cursor: pointer;
  cursor: pointer;
}
.cta a {
  color: black;
  text-shadow: 1px 1px 2px black;
}

.parallax-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.parallax-bg {
  /* Replace with your background image */
  transform: translate3d(0, 0, 0);
  z-index: -1;
  overflow: hidden;
}

/* ============================================================DEFAULT CSS END */
header {
  width: 100%;
  height: 0;
  position: fixed;
  z-index: 1000001;
  background-color: var(--clr-sec-grey);
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem 0;
  background-color: var(--clr-sec-grey);
}
.navbar a .logo {
  width: auto;
  height: 3rem;
  z-index: 10001;
  filter: drop-shadow(0.5px 0.5px 0.5px white);
  padding: 5px 0;
  padding-left: 10rem;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  align-items: center;
  right: 10rem;
  z-index: 10001;
  background-color: transparent;
  padding: 5px 0;
}

.line {
  width: 40px;
  height: 4px;
  margin: 2px 0;
  background-color: var(--clr-roseGold);
  filter: drop-shadow(1px 1px 1px black);
  transition: all 0.3s ease;
  border-radius: 5px;
}

.change .line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.change .line:nth-child(2) {
  opacity: 0;
}

.change .line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.nav-links {
  display: flex;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to left, var(--clr-sec-grey) 60%, var(--clr-main-grey) 40%);
  width: 100%;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: translateX(-100%);
  transition: all 0.5s ease-in;
}

.linkss {
  width: 100%;
  font-size: 0.9rem;
  text-align: end;
  margin-right: 14rem;
}

.show-nav {
  transform: translatex(0%);
  transition: all 0.2s ease-in-out;
}

.nav-links {
  width: 100%;
  color: white;
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.1fr;
  grid-template-rows: 1fr 0.2fr;
  z-index: 1001;
}
.nav-links p {
  color: var(--clr-roseGold);
  writing-mode: vertical-lr;
}
.nav-links .nav1 {
  grid-column: 1/2;
  grid-row: 1/2;
  padding: 2rem 5rem;
}
.nav-links .nav1 p {
  margin: 2rem 0;
  writing-mode: horizontal-tb;
  color: white;
  font-size: 1.2rem;
}
.nav-links .nav1 h2 {
  font-size: 1.4rem;
}
.nav-links .nav2 {
  height: 100%;
  padding: 15rem 2rem 2rem 2rem;
  grid-column: 2/3;
  grid-row: 1/2;
  color: var(--clr-roseGold);
  border-bottom: 1px solid white;
}
.nav-links .nav2 div p {
  opacity: 0.4;
}
.nav-links .nav2 div h2 {
  font-size: 2.2rem;
  transition: all 0.4s ease-in-out;
}
.nav-links .nav2 div h2:hover {
  border-radius: 30px;
  padding: 1rem;
  transition: all 0.2s ease-in-out linear;
}
.nav-links .nav2 div:nth-child(1) {
  gap: 0.5rem;
}
.nav-links .nav2 div:nth-child(2) {
  gap: 0.5rem;
}
.nav-links .nav2 div:nth-child(3) {
  gap: 0.5rem;
}
.nav-links .nav2 div:nth-child(4) {
  gap: 0.5rem;
}
.nav-links .nav2 div:nth-child(4) p {
  writing-mode: horizontal-tb;
}
.nav-links .nav3 {
  grid-column: 1/2;
  grid-row: 2/3;
  color: var(--clr-roseGold);
  padding: 3rem 5rem;
}
.nav-links .nav3 p {
  writing-mode: horizontal-tb;
}
.nav-links .nav4 {
  grid-column: 2/3;
  grid-row: 2/3;
  color: var(--clr-roseGold);
  padding: 3rem;
}
.nav-links .nav4 p {
  writing-mode: horizontal-tb;
}
.nav-links .nav4 img {
  width: 30px;
  height: 30px;
  margin-right: 2rem;
}

.services {
  position: relative;
  margin-left: auto;
}

.services .dropdown {
  display: none;
  position: absolute;
  background-color: var(--clr-sec-grey);
  list-style: none;
  top: 100%;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  animation: rotateMenu 300ms ease-in-out forwards;
  transform-origin: top center;
}

@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.services:hover .dropdown,
.services.active .dropdown {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.dropdown-item {
  position: relative;
}

.dropdown-item a:hover {
  color: white;
}

.column {
  float: left;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  height: auto;
  padding: 6rem 10rem;
}
.column .img-menu {
  gap: 2rem;
}

.column a {
  float: none;
  color: white;
  text-decoration: none;
  display: block;
}
.column a h2 {
  font-weight: var(--fw-7);
  font-size: 1.2rem;
}
.column a img {
  height: 140px;
  width: 270px;
  margin-right: 1rem;
}

.column a:hover {
  cursor: pointer;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

@media only screen and (max-width: 1230px) {
  .navbar {
    width: 100%;
    background-color: var(--clr-sec-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .navbar a .logo {
    height: 2.6rem;
    z-index: 10001;
    filter: drop-shadow(0.5px 0.5px 0.5px white);
    padding-left: 1rem;
    padding-top: 8px;
  }
  .hamburger-menu {
    right: 1rem;
  }
  .line {
    margin: 2px 0;
  }
  .nav-links {
    align-items: center;
    height: 100dvh;
    justify-content: center;
    transform: translateX(-100%);
    transition: all 0.5s ease-in;
  }
  .linkss {
    display: none;
  }
  .show-nav {
    transform: translatex(0%);
    transition: all 0.3s ease-in-out;
  }
  .nav-links {
    padding: 1rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.4fr 0.1fr;
  }
  .nav-links h2 {
    font-size: 2.6rem;
  }
  .nav-links p {
    color: var(--clr-roseGold);
    opacity: 0.5;
  }
  .nav-links h2:hover {
    background-color: rgba(0, 0, 0, 0.716);
    border-radius: 20px;
    padding: 0.3rem;
  }
  .nav-links .nav1 {
    grid-column: 1/2;
    grid-row: 2/3;
    padding: 0.3rem;
  }
  .nav-links .nav1 p {
    margin: 0.3rem 0;
    writing-mode: horizontal-tb;
    font-size: 1.2rem;
  }
  .nav-links .nav1 h2 {
    font-size: 1.4rem;
  }
  .nav-links .nav2 {
    height: 100%;
    padding: 7rem 0rem 0rem 0.2rem;
    grid-column: 1/2;
    grid-row: 1/2;
    color: var(--clr-roseGold);
    border-bottom: 1px solid white;
  }
  .nav-links .nav2 div p {
    opacity: 0.4;
  }
  .nav-links .nav2 div h2 {
    font-size: 1.5rem;
    transition: all 0.4s ease-in-out;
    padding: 0.6rem;
  }
  .nav-links .nav2 div:nth-child(1) {
    gap: 0.5rem;
  }
  .nav-links .nav2 div:nth-child(2) {
    gap: 0.5rem;
  }
  .nav-links .nav2 div:nth-child(3) {
    gap: 0.5rem;
  }
  .nav-links .nav2 div:nth-child(4) {
    gap: 0.5rem;
  }
  .nav-links .nav2 div:nth-child(4) p {
    writing-mode: horizontal-tb;
  }
  .nav-links .nav3 {
    grid-column: 1/2;
    grid-row: 3/4;
    color: var(--clr-roseGold);
    padding: 3rem;
  }
  .nav-links .nav3 p {
    writing-mode: horizontal-tb;
  }
  .nav-links .nav4 {
    display: none;
  }
}
.heroSection {
  width: 100%;
  height: 45rem;
  padding-top: 4rem;
  color: var(--clr-font-main);
  background: url(./public/circle-blue.png), var(--clr-sec-grey);
  background-blend-mode: screen;
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center right;
  overflow-y: visible;
  overflow: hidden;
}
.heroSection .hero {
  width: 90%;
  margin: 0 auto;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
  gap: 2rem;
  /* Fading animation */
}
.heroSection .hero .heroTxtLeft {
  clear: both;
  z-index: 1001;
  width: 100%;
  height: auto;
  color: var(--clr-roseGold);
  font-weight: 500;
  align-self: center;
  justify-self: center;
  padding: 1rem;
}
.heroSection .hero .heroTxtLeft h2 {
  font-size: 2.6rem;
  color: white;
}
.heroSection .hero .heroTxtLeft p {
  font-size: 1.2rem;
}
.heroSection .hero .heroTxtLeft span {
  font-size: 1.2rem;
}
.heroSection .hero .mySlides {
  display: none;
}
.heroSection .hero .fade {
  animation-name: fade;
  animation-duration: 0.8s;
  animation-timing-function: ease-in ease-out;
}
@keyframes fade {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.heroSection .hero .heroTxtRight {
  width: 100%;
  height: auto;
  align-self: center;
  text-align: center;
}
.heroSection .hero .heroTxtRight img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.heroSection:after {
  content: "";
  background: url(./public/orbit-circle.svg) no-repeat left center;
  background-size: 500px;
  position: absolute;
  right: -15em;
  bottom: 2rem;
  width: 500px;
  height: 500px;
  opacity: 0.7;
  animation: spin2 50s linear infinite;
}

@media only screen and (max-width: 890px) {
  .heroSection {
    height: auto;
    min-height: 100vh;
    padding-top: 10rem;
  }
  .heroSection .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 0.6fr 1fr;
    padding: 0rem;
    text-align: center;
  }
  .heroSection .hero .heroTxtLeft {
    grid-row: 2/3;
    height: 100%;
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  .heroSection .hero .heroTxtLeft h2 {
    margin: 20px 0;
    font-size: 1.6rem;
  }
  .heroSection .hero .heroTxtLeft br {
    display: none;
  }
  .heroSection .hero .heroTxtRight {
    width: 100%;
    grid-row: 1/2;
  }
  .heroSection:after {
    content: "";
    background: url(./public/orbit-circle.svg) no-repeat left center;
    background-size: 400px;
    position: absolute;
    right: -15em;
    bottom: 12rem;
    width: 400px;
    height: 400px;
    opacity: 0.7;
    animation: spin2 50s linear infinite;
  }
}
.sectionAbout {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  padding: 2rem 0;
  position: relative;
  background-color: var(--clr-sec-grey);
}
.sectionAbout h4:nth-child(1) {
  font-size: 2rem;
  padding: 2rem;
  text-align: center;
  color: var(--clr-roseGold);
}
.sectionAbout .about {
  width: 90%;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0.4rem;
}
.sectionAbout .about .aboutImg {
  display: flex;
  background: linear-gradient(to right, var(--clr-roseGold) 60%, transparent 40%);
}
.sectionAbout .about .aboutImg img {
  padding: 1rem;
  margin-left: auto;
  max-width: 400px;
  height: auto;
  -webkit-clip-path: polygon(80% 0, 100% 1%, 100% 74%, 27% 100%, 0 100%, 0 28%);
          clip-path: polygon(80% 0, 100% 1%, 100% 74%, 27% 100%, 0 100%, 0 28%);
}
.sectionAbout .about .aboutTxt {
  color: white;
  padding: 0 2rem;
}
.sectionAbout .about .aboutTxt h2 {
  font-size: 2rem;
}
.sectionAbout .about .aboutTxt p {
  margin: 2rem 0;
  letter-spacing: 1.2px;
  font-size: 1.2rem;
}
.sectionAbout .about .aboutTxt .aboutTxt-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sectionAbout .about .aboutTxt .aboutTxt-child .aTc {
  padding: 1rem;
  width: auto;
}
.sectionAbout .about .aboutTxt .aboutTxt-child p {
  margin: 8px 0px;
  letter-spacing: 1.1px;
}

@media only screen and (max-width: 800px) {
  .sectionAbout {
    margin-bottom: 5rem;
    margin: 1rem 0;
    padding: 1rem 0;
  }
  .sectionAbout .about {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .sectionAbout .about .aboutImg img {
    padding: 1rem;
    margin-left: 1.4rem;
    width: 100%;
    max-width: 330px;
    height: auto;
  }
  .sectionAbout .about .aboutTxt {
    padding: 0 0.5rem;
    text-align: justify;
  }
  .sectionAbout .about .aboutTxt h2 {
    text-align: center;
    margin: 1.2rem 0;
  }
  .sectionAbout .about .aboutTxt .aboutTxt-child {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  .sectionAbout .about .aboutTxt .aboutTxt-child .aTc {
    padding: 1rem;
  }
  .sectionAbout .about .aboutTxt .aboutTxt-child p {
    margin: 8px 0px;
  }
}
.servicesHeadSection {
  margin: 3rem 0;
}
.servicesHeadSection .servicesHead {
  width: 90%;
  margin: 0 auto;
}
.servicesHeadSection .servicesHead .servicesHeadTxt {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.servicesHeadSection .servicesHead .servicesHeadTxt span {
  font-size: 1.2rem;
  color: white;
}
.servicesHeadSection .servicesHead .servicesHeadTxt h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-roseGold);
}

@media only screen and (max-width: 768px) {
  .servicesHeadSection {
    height: auto;
    margin: 3rem 0;
  }
  .servicesHeadSection .servicesHead {
    width: 96%;
  }
}
.sServicesSection {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30rem;
  margin-top: 3rem;
  z-index: 10000001;
}

.sServices-container {
  display: flex;
  gap: 10px;
  width: 90%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

.sService {
  flex: 0 0 125px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--clr-roseGold);
  transition: flex-grow 0.3s ease-in-out, flex-shrink 0.3s ease-in-out, background-color 0.3s;
  cursor: pointer;
}
.sService.active {
  flex-grow: 1;
}
.sService .sService-title {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--clr-sec-grey);
}
.sService .sService-title span {
  display: inline-block;
  font-size: 2rem;
  transform: rotate(90deg);
}
.sService .sService-content {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  padding: 1rem;
  text-align: start;
  border: 1px solid var(--clr-roseGold);
}
.sService .sService-content.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.sService .sService-content h2 {
  margin: 2rem 0;
  font-size: 2rem;
  padding: 0 2rem;
  color: var(--clr-roseGold);
}
.sService .sService-content p {
  margin: 1rem 0;
  font-size: 1rem;
  padding: 0 2rem;
}
.sService .sService-content button {
  background-color: transparent;
  color: #fff;
  border: 1px solid white;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 1rem 2rem;
}
.sService .sService-content button:hover {
  background-color: white;
  color: #e5896a;
}

@media only screen and (max-width: 768px) {
  .sServicesSection {
    display: flex;
    width: 100vw;
    height: auto;
    margin: 0;
    padding: 1rem;
  }
  .sServices-container {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .sService {
    flex: 0 0 auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-roseGold);
    position: relative;
    transition: flex-grow 0.3s, height 0.3s, background-color 0.3s;
    cursor: pointer;
  }
  .sService.active {
    flex-grow: 1;
    height: 70vh;
  }
  .sService .sService-title {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin: 0.5rem;
    padding: 1rem;
  }
  .sService-content {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100%;
    padding: 1rem;
    color: white;
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  .sService-content.active {
    display: flex;
  }
  .sService-content h2 {
    margin: 0.5rem 0;
    font-size: 1.5rem;
  }
  .sService-content p {
    margin: 0.5rem 0;
    font-size: 1rem;
  }
  .sService-content button {
    margin-top: 1rem;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: white;
    color: var(--clr-pri-blu);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  .sService-content button:hover {
    background-color: var(--clr-pri-blu);
    color: white;
  }
}
.site-main {
  background-color: var(--clr-sec-grey);
  position: relative;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  z-index: -1;
}
.site-main img {
  max-width: 700px;
  height: auto;
}

@keyframes spin {
  0% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.site-main::after {
  content: "";
  background: url(./public/orbit-circle.svg) no-repeat left center;
  background-size: 700px;
  position: absolute;
  left: -25em;
  top: -15rem;
  width: 700px;
  height: 700px;
  opacity: 0.5;
  animation: spin 50s linear infinite;
}

.site-main::before {
  content: "";
  background: url(./public/orbit-circle.svg) no-repeat left center;
  background-size: 300px;
  position: absolute;
  left: 12em;
  top: 15rem;
  width: 300px;
  height: 300px;
  opacity: 0.7;
  animation: spin2 50s linear infinite;
}

@media only screen and (max-width: 768px) {
  .site-main {
    position: relative;
    text-align: center;
    padding: 1rem;
    margin-top: 10px;
  }
  .site-main img {
    width: 100%;
    max-width: 900px;
    height: auto;
  }
  .site-main::before {
    content: "";
    background: url(./public/orbit-circle.svg) no-repeat left center;
    background-size: 350px;
    position: absolute;
    left: -12em;
    top: 15rem;
    width: 350px;
    height: 350px;
    opacity: 0.8;
    animation: spin2 50s linear infinite;
  }
  .site-main::after {
    content: "";
    display: none;
  }
}
.whyUsSection {
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}
.whyUsSection .whyUs {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}
.whyUsSection .whyUs .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  border: 0.5px solid rgb(98, 98, 98);
  border-radius: 5px;
  padding: 2rem;
}
.whyUsSection .whyUs .grid-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
}
.whyUsSection .whyUs .icon {
  font-size: 30px;
  color: goldenrod;
  margin-bottom: 10px;
}
.whyUsSection h1 {
  font-size: 32px;
  font-weight: bold;
}
.whyUsSection p {
  font-size: 16px;
  color: #ccc;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .whyUsSection .whyUs .grid {
    grid-template-columns: 1fr;
  }
}
.midBannerSection {
  height: auto;
  position: relative;
  background: linear-gradient(to right, var(--clr-sec-grey) 65%, var(--clr-roseGold));
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  color: white;
}
.midBannerSection .midBanner {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  padding: 1rem;
  gap: 1rem;
  text-align: center;
  padding: 8rem 0;
}
.midBannerSection .midBanner .midBannerTxt h2 {
  font-size: 2rem;
  padding: 1rem;
}
.midBannerSection .midBanner .midBannerTxt p {
  padding: 1rem;
  font-size: 1.2rem;
}
.midBannerSection .midBanner .midBannerImg {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 0 20px #eab4b4, inset 20px 0 80px #f0f, inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff, 0 0 50px #eab4b4, -10px 0 80px #f0f, 10px 0 80px #0ff;
}
.midBannerSection .midBanner .midBannerImg img {
  position: absolute;
  left: -12%;
  animation: move 3s ease-in-out infinite;
  width: 425px;
  height: auto;
}
@keyframes move {
  0% {
    top: 0;
  }
  50% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}

@media only screen and (max-width: 890px) {
  .midBannerSection {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 0rem;
    background: none;
    border-top-right-radius: 0%;
    border-bottom-right-radius: 0%;
  }
  .midBannerSection .midBanner {
    width: 98%;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    padding: 1rem;
  }
  .midBannerSection .midBanner .midBannerTxt {
    margin-top: 5rem;
    grid-row: 2/3;
  }
  .midBannerSection .midBanner .midBannerTxt h2 {
    padding: 5px;
  }
  .midBannerSection .midBanner .midBannerTxt p {
    text-align: justify;
  }
  .midBannerSection .midBanner .midBannerImg {
    grid-row: 1/2;
    width: 250px;
    height: 250px;
    background-size: cover;
  }
  .midBannerSection .midBanner .midBannerImg img {
    position: absolute;
    animation: move 3s ease-in-out infinite;
    width: 310px;
    height: auto;
  }
}
.testimonialsSection {
  width: 100%;
  height: auto;
  margin: 0rem;
  padding: 6rem 4rem;
  overflow-x: hidden;
  background-image: url(./public/pattern-bg.svg);
  background-size: 20%;
  background-repeat: no-repeat;
  background-position: left;
}
.testimonialsSection p:nth-child(1) {
  text-align: center;
  color: white;
  margin-bottom: -2rem;
  font-size: 1.2rem;
}
.testimonialsSection h2 {
  font-weight: var(--fw-5);
  font-size: 2.6rem;
  text-align: center;
  padding: 3rem 1rem 1rem;
  color: var(--clr-roseGold);
}
.testimonialsSection h4 {
  text-align: center;
  padding: 0rem 0rem 3rem;
  color: white;
  font-size: 1.2rem;
}
.testimonialsSection .testimonials {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  grid-template-rows: 1fr 0.1fr;
  grid-template-areas: "testiTxt testiImg" "testiTxt testiBtn";
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.testimonialsSection .testimonials p {
  color: #fefefe;
  font-size: 1.2rem;
}
.testimonialsSection .testimonials .testimonialImg {
  grid-area: testiImg;
}
.testimonialsSection .testimonials .testimonialImg .image {
  max-width: 200px;
  height: auto;
  padding: 1rem;
  border: 4px solid var(--clr-roseGold);
}
.testimonialsSection .testimonials .testimonialImg .name {
  text-align: left;
  padding: 1rem;
  color: var(--clr-roseGold);
  font-size: 1.2rem;
}
.testimonialsSection .testimonials .testimonialTxt {
  grid-area: testiTxt;
  padding: 2rem;
  text-align: end;
}
.testimonialsSection .testimonials .testimonialTxt .name {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--clr-roseGold);
}
.testimonialsSection .testimonials .testimonialTxt .testimonial {
  font-size: 22px;
  margin-bottom: 20px;
}
.testimonialsSection .testimonials .testimonialsBtns {
  grid-area: testiBtn;
  padding: 1rem 0rem;
}
.testimonialsSection .testimonials .testimonialsBtns button {
  padding: 7px 30px;
  font-size: 1rem;
  background-color: var(--clr-roseGold);
  color: var(--clr-main-grey);
  cursor: pointer;
  border: none;
}

@media only screen and (max-width: 800px) {
  .testimonialsSection {
    padding: 1rem;
    background-size: 50%;
    background-position: right bottom;
  }
  .testimonialsSection .testimonials {
    display: flex;
    flex-direction: column;
    width: 98%;
    margin: 0 auto;
  }
  .testimonialsSection .testimonials .testimonialImg {
    grid-area: testiImg;
    position: relative;
  }
  .testimonialsSection .testimonials .testimonialImg .image {
    width: 200px;
    height: auto;
  }
  .testimonialsSection .testimonials .testimonialImg .name {
    text-align: center;
    padding: 1rem 0;
    color: var(--clr-roseGold);
  }
  .testimonialsSection .testimonials .testimonialTxt {
    height: auto;
    padding: 1rem 0;
    text-align: start;
  }
  .testimonialsSection .testimonials .testimonialTxt .name {
    font-size: 22px;
    font-weight: var(--fw-7);
    text-align: center;
  }
  .testimonialsSection .testimonials .testimonialTxt .testimonial {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: justify;
  }
  .testimonialsSection .testimonials .testimonialsBtns {
    padding: 0.5rem 0rem;
    margin: 2rem 0;
  }
  .testimonialsSection .testimonials .testimonialsBtns button {
    padding: 5px 20px;
  }
}
.container {
  position: relative;
  height: auto;
}

.image {
  width: 400px;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.image:hover {
  opacity: 1;
}

.text-box {
  position: absolute;
  top: 1rem;
  left: 5%;
  width: 400px;
  height: auto;
  padding: 2rem;
  box-sizing: border-box;
  color: black;
  border: 1px solid rgba(0, 0, 255, 0.322);
  background-color: rgba(0, 53, 103, 0.3450980392);
  border-radius: 30px;
  z-index: 100000000000001;
}

.text-content {
  font-size: 16px;
}

.close-btn {
  position: absolute;
  color: black;
  top: 10px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.newsSection {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 4rem;
  background-image: linear-gradient(150deg, var(--clr-sec-grey) 55.66%, rgb(174, 174, 174) 45.33%);
  background-blend-mode: lighten;
  overflow-x: hidden;
}
.newsSection .news {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 1rem;
  gap: 1rem;
  place-items: center;
  background-image: linear-gradient(150deg, var(--clr-sec-grey) 45.33%, var(--clr-roseGold) 55.66%, var(--clr-sec-grey) 55.33%);
}
.newsSection .news img {
  width: 400px;
  height: auto;
  padding-left: 1rem;
}
.newsSection .news h3 {
  font-size: 1.2rem;
  padding: 1rem;
  font-weight: 600;
  color: #fefefe;
}
.newsSection .news p {
  padding: 0 1rem;
  color: #fefefe;
}
.newsSection .news .news1 span {
  color: var(--clr-roseGold);
}
.newsSection .news .news1 h3 {
  font-size: 2rem;
  padding: 0rem;
  font-weight: 700px;
  color: white;
}
.newsSection .news .news2 {
  padding: 1rem;
  border: 0.5px solid black;
  box-shadow: 1px 1px 4px black;
  background-color: rgba(255, 255, 255, 0.372);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
}
.newsSection .news .news2 div {
  padding: 1rem;
  font-size: 14px;
  color: white;
}
.newsSection .news .news2 img {
  width: 40px;
  height: auto;
}
.newsSection .news .news4 img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

@media only screen and (max-width: 800px) {
  .newsSection {
    padding: 0.5rem;
    margin: 4rem 0rem;
  }
  .newsSection .news {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0.3rem;
    gap: 1.2rem;
  }
  .newsSection .news img {
    padding-left: 0.3 rem;
  }
  .newsSection .news h3 {
    padding: 0.5rem;
  }
  .newsSection .news p {
    padding: 0 0.5rem;
  }
  .newsSection .news .news1 h3 {
    padding-bottom: 2rem;
  }
}
.mainBanner {
  background: linear-gradient(to bottom, var(--clr-sec-grey) 55%, #4ea6e8 45%);
  padding-top: 10rem;
  display: grid;
}
.mainBanner .mainBannerTxt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mainBanner .mainBannerTxt span {
  width: calc(4rem + 200px);
  height: 2px;
  background-color: white;
}
.mainBanner .mainBannerTxt h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: white;
  font-weight: var(--fw-7);
}
.mainBanner .mainBannerImg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainBanner .mainBannerImg img {
  width: 100%;
  max-width: 700px;
  height: auto;
  max-height: 330px;
}
.mainBanner .mainBannerTxt2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.mainBanner .mainBannerTxt2 h3 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: white;
  font-weight: var(--fw-7);
}
.mainBanner .mainBannerTxt2 span {
  width: calc(4rem + 200px);
  height: 2px;
  background-color: white;
}

@media only screen and (max-width: 768px) {
  .mainBanner {
    padding-top: 8rem;
  }
  .mainBanner .mainBannerTxt {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .mainBanner .mainBannerTxt span {
    width: calc(2rem + 50px);
    height: 2px;
    background-color: white;
  }
  .mainBanner .mainBannerTxt h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    font-weight: var(--fw-7);
  }
  .mainBanner .mainBannerImg {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
  }
  .mainBanner .mainBannerImg img {
    width: 100%;
    max-width: 900px;
    height: auto;
  }
  .mainBanner .mainBannerTxt2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
  }
  .mainBanner .mainBannerTxt2 h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    font-weight: var(--fw-7);
  }
  .mainBanner .mainBannerTxt2 span {
    width: calc(2rem + 50px);
    height: 2px;
    background-color: white;
  }
}
.webDevelopment {
  background: url(./public/background2.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.socialContent {
  width: 100%;
  height: auto;
  background-color: #4ea6e8;
  color: white;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  padding-top: 5rem;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 8rem;
}
.socialContent .contentTxt {
  width: 80%;
  height: 100%;
  margin-top: 200px;
}
.socialContent .contentTxt h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.socialContent .contentTxt p {
  margin-top: 1rem;
}
.socialContent .contentMod {
  height: 100%;
  position: inherit;
  top: 0;
}
.socialContent .contentMod span {
  height: 130px;
  width: 2px;
  background-color: white;
  position: absolute;
}
.socialContent .contentMod span::before {
  content: "";
  height: 2px;
  width: 30px;
  background-color: white;
  position: absolute;
  top: 130px;
}
.socialContent .contentMod span::after {
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid white;
  position: absolute;
  top: 120px;
  left: 30px;
}
.socialContent .contentImg {
  margin-left: -100px;
  overflow-y: hidden;
  overflow-x: visible;
  z-index: 1000;
}
.socialContent .contentImg img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.socialContent:before {
  content: "";
  background: url(./public/orbit-circle.svg) no-repeat left center;
  background-size: 600px;
  position: absolute;
  left: -10em;
  top: -10rem;
  width: 600px;
  height: 600px;
  opacity: 0.5;
  animation: spin 50s linear infinite;
}

@media only screen and (max-width: 768px) {
  .socialContent {
    width: 100%;
    height: auto;
    background-color: #4ea6e8;
    color: white;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 8rem;
  }
  .socialContent .contentTxt {
    width: 98%;
    margin: 0 auto;
    height: auto;
    margin-top: 1rem;
    padding: 1.5rem;
  }
  .socialContent .contentTxt h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .socialContent .contentTxt p {
    margin-top: 1rem;
  }
  .socialContent .contentMod {
    height: 100%;
    position: inherit;
    top: 0;
  }
  .socialContent .contentMod span {
    height: 130px;
    width: 2px;
    background-color: white;
    position: absolute;
  }
  .socialContent .contentMod span::before {
    content: "";
    height: 2px;
    width: 30px;
    background-color: white;
    position: absolute;
    top: 130px;
  }
  .socialContent .contentMod span::after {
    content: "";
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid white;
    position: absolute;
    top: 120px;
    left: 30px;
  }
  .socialContent .contentImg {
    margin-left: -100px;
    overflow-y: hidden;
    overflow-x: visible;
    margin-right: 150px;
    z-index: 1000;
  }
  .socialContent .contentImg img {
    width: 100%;
    max-width: 700px;
    height: auto;
  }
  .socialContent:before {
    content: "";
    display: none;
  }
}
.marketingSection {
  width: 100%;
  height: auto;
  align-items: center;
  position: relative;
}
.marketingSection .marketing {
  margin-top: -300px;
  width: 80%;
  display: grid;
  grid-template-columns: 0.5fr 1fr 20px;
  justify-content: space-around;
  background-color: var(--clr-sec-grey);
  padding: 2rem;
}
.marketingSection .marketing .marketingTxt {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fefefe;
  padding-top: 80px;
  margin-top: 0;
  /* Style for the dropdown arrow */
  /* Hide the content initially */
}
.marketingSection .marketing .marketingTxt .section {
  width: 90%;
  cursor: pointer;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
}
.marketingSection .marketing .marketingTxt .section h2 {
  font-size: 1.4rem;
}
.marketingSection .marketing .marketingTxt .arrow {
  float: right;
}
.marketingSection .marketing .marketingTxt .content {
  display: none;
  padding: 10px;
}
.marketingSection .marketing .contentMod {
  height: 100%;
  margin-top: -30px;
  transform: rotateY(180deg);
  margin-right: auto;
  margin-left: 50px;
}
.marketingSection .marketing .contentMod span {
  height: 160px;
  width: 2px;
  background-color: white;
  position: absolute;
}
.marketingSection .marketing .contentMod span::before {
  content: "";
  height: 2px;
  width: 30px;
  background-color: white;
  position: absolute;
  top: 160px;
}
.marketingSection .marketing .contentMod span::after {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid white;
  position: absolute;
  top: 152px;
  left: 30px;
}
.marketingSection .marketing .marketingImg img {
  position: absolute;
  width: 360px;
  height: auto;
  top: 70px;
  right: 20px;
  overflow: visible;
  z-index: 1000;
}

.marketingSection::before {
  content: "";
  background: url(./public/orbit-circle.svg) no-repeat left center;
  background-size: 400px;
  position: absolute;
  right: -10em;
  top: -5rem;
  width: 400px;
  height: 400px;
  opacity: 1;
  animation: spin 50s linear infinite;
}

@media only screen and (max-width: 798px) {
  .marketingSection .marketing {
    margin-top: 0px;
    width: 100%;
    grid-template-columns: 1fr;
    justify-content: space-around;
  }
  .marketingSection .marketing .marketingTxt {
    width: 100%;
    margin-top: 6rem;
    flex-direction: column;
  }
  .marketingSection .marketing .marketingTxt .section {
    width: 96%;
  }
  .marketingSection .marketing .contentMod {
    height: 100%;
    margin-top: -30px;
    transform: rotateY(180deg);
    margin-right: auto;
    margin-left: 50px;
  }
  .marketingSection .marketing .contentMod span {
    height: 160px;
    width: 2px;
    background-color: white;
    position: absolute;
  }
  .marketingSection .marketing .contentMod span::before {
    content: "";
    height: 2px;
    width: 30px;
    background-color: white;
    position: absolute;
    top: 160px;
  }
  .marketingSection .marketing .contentMod span::after {
    content: "";
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 1px solid white;
    position: absolute;
    top: 152px;
    left: 30px;
  }
  .marketingSection .marketing .marketingImg img {
    position: absolute;
    max-width: 200px;
    height: auto;
    top: -100px;
    right: 0px;
    overflow: visible;
    z-index: 1000;
  }
  .marketingSection::before {
    content: "";
    display: none;
  }
}
.marketingSection2 {
  padding: 6rem 0;
  height: auto;
  align-items: center;
  background: var(--clr-pri-blu);
  position: relative;
}
.marketingSection2 .marketing2 {
  width: 90%;
  height: auto;
  display: grid;
  grid-template-columns: 0.5fr 1fr 20px;
  justify-content: center;
  align-items: center;
  padding-bottom: 6rem;
}
.marketingSection2 .marketing2 .marketingTxt2 {
  width: 80%;
  display: flex;
  flex-direction: column;
  color: black;
  /* Style for the dropdown arrow */
  /* Hide the content initially */
}
.marketingSection2 .marketing2 .marketingTxt2 .section {
  width: 90%;
  cursor: pointer;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  height: auto;
}
.marketingSection2 .marketing2 .marketingTxt2 .section h2 {
  font-size: 1.4rem;
}
.marketingSection2 .marketing2 .marketingTxt2 .arrow {
  float: right;
}
.marketingSection2 .marketing2 .marketingTxt2 .content {
  display: none;
  padding: 10px;
  background-color: white;
}
.marketingSection2 .marketing2 .marketingImg2 img {
  width: 100%;
  max-width: 540px;
  height: auto;
  bottom: 50px;
  left: 20px;
  overflow: visible;
  z-index: 1000;
}

@media only screen and (max-width: 768px) {
  .marketingSection2 {
    padding: 0;
    height: auto;
  }
  .marketingSection2 .marketing2 {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    padding: 1rem;
  }
  .marketingSection2 .marketing2 .marketingTxt2 {
    width: 94%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    color: black;
    /* Style for the dropdown arrow */
    /* Hide the content initially */
  }
  .marketingSection2 .marketing2 .marketingTxt2 .section {
    width: 90%;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    height: auto;
  }
  .marketingSection2 .marketing2 .marketingTxt2 .section h2 {
    font-size: 1.4rem;
  }
  .marketingSection2 .marketing2 .marketingTxt2 .arrow {
    float: right;
  }
  .marketingSection2 .marketing2 .marketingTxt2 .content {
    display: none;
    padding: 10px;
    background-color: white;
  }
  .marketingSection2 .marketing2 .marketingImg2 img {
    width: 100%;
    max-width: 540px;
    height: auto;
    bottom: 50px;
    left: 20px;
    overflow: visible;
    z-index: 1000;
  }
}
.specialSection {
  width: 100%;
  height: auto;
  color: white;
  position: relative;
}
.specialSection .special {
  height: 100%;
  background-color: var(--clr-pri-blu);
  padding-bottom: 6rem;
}
.specialSection .special h3 {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 3rem;
  text-align: center;
  padding: 0 10rem;
  font-size: 1.4rem;
}
.specialSection .special .specialTxt {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}
.specialSection .special .specialTxt .sT {
  border: 1px solid white;
  padding: 2rem;
}
.specialSection .special .specialTxt .sT h2 {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  letter-spacing: 1.2px;
}

@media only screen and (max-width: 768px) {
  .specialSection {
    width: 100%;
    height: auto;
    color: white;
  }
  .specialSection .special {
    height: 100%;
    background-color: #2d90ea;
    padding-bottom: 2rem;
  }
  .specialSection .special h3 {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    font-size: 1.4rem;
  }
  .specialSection .special .specialTxt {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
  }
  .specialSection .special .specialTxt .sT {
    border: 1px solid white;
    padding: 2rem;
  }
  .specialSection .special .specialTxt .sT h2 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
}
.bottomSection {
  width: 100%;
  background-color: var(--clr-sec-grey);
  color: white;
  padding: 2rem 0;
  position: relative;
}
.bottomSection .bBanner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: center;
}
.bottomSection .bBanner .bBannerTxt {
  padding: 6rem;
}
.bottomSection .bBanner .bBannerTxt h2 {
  font-size: 1.6rem;
}
.bottomSection .bBanner .bBannerTxt p {
  margin: 2rem 0;
}
.bottomSection .bBanner .bBannerTxt button {
  background-color: #d66a12;
  padding: 0.5rem 1.8rem;
  color: white;
  border: none;
}
.bottomSection .bBanner .bBannerImg img {
  width: 100%;
  max-width: 650px;
}

@media only screen and (max-width: 768px) {
  .bottomSection {
    padding: 2rem 0;
  }
  .bottomSection .bBanner {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .bottomSection .bBanner .bBannerTxt {
    padding: 2rem;
  }
  .bottomSection .bBanner .bBannerTxt h2 {
    font-size: 1.6rem;
  }
  .bottomSection .bBanner .bBannerTxt p {
    margin: 2rem 0;
  }
  .bottomSection .bBanner .bBannerTxt button {
    background-color: #d66a12;
    padding: 0.5rem 1.8rem;
    color: white;
    border: none;
  }
  .bottomSection .bBanner .bBannerImg img {
    width: 100%;
    max-width: 650px;
  }
}
.footerSection {
  width: 100%;
  height: auto;
  position: relative;
  background-color: var(--clr-sec-grey);
}
.footerSection .footer {
  width: 96%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 290px auto;
  grid-template-areas: "fc1 fc2 fc6" "fc4 fc5 fc6";
  gap: 0.1rem;
  color: #fefefe;
}
.footerSection .footer .fc {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.footerSection .footer .fc a {
  color: var(--clr-roseGold);
  font-size: 1.2rem;
  margin-left: 2rem;
  padding: 0.2rem 0rem;
  transition: margin-left 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
.footerSection .footer .fc a:hover {
  color: #fefefe;
  margin-left: 2.5rem;
  transition: all 0.3s ease-in-out;
}
.footerSection .footer .fc a::before {
  content: "⇥";
}
.footerSection .footer .fc h4 {
  padding: 1rem;
  color: #fefefe;
  font-size: 1.4rem;
}
.footerSection .footer .fc1 {
  grid-area: fc1;
}
.footerSection .footer .fc3 {
  grid-area: fc4;
}
.footerSection .footer .fc4 {
  grid-area: fc2;
}
.footerSection .footer .fc4 div {
  flex-direction: initial;
}
.footerSection .footer .fc4 div img {
  width: 70px;
  height: 70px;
}
.footerSection .footer .fc4 div address {
  padding: 1.2rem;
  font-size: 1.2rem;
}
.footerSection .footer .fc4 p {
  padding: 1rem;
  font-size: 1.2rem;
}
.footerSection .footer .fc5 {
  grid-area: fc5;
}
.footerSection .footer .fc5 img {
  width: 240px;
  height: auto;
  padding: 1rem;
}
.footerSection .footer .fc5 p {
  padding: 1rem;
}
.footerSection .footer .fc5 .icons {
  display: block;
  flex-direction: initial;
}
.footerSection .footer .fc5 .icons img {
  width: 60px;
  padding: 10px;
}
.footerSection .footer .fc6 {
  font-size: 1.2rem;
}
.footerSection .lowerFooter {
  padding: 1rem;
  text-align: center;
  color: var(--clr-roseGold);
  border-top: 1px solid var(--clr-roseGold);
}

@media only screen and (max-width: 800px) {
  .footerSection .footer {
    width: 98%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "fc2" "fc3" "fc3" "fc1" "fc4" "fc5";
  }
}
.contactPageBannerSection {
  width: 100%;
  height: 30vh;
  padding-top: 7vh;
  background-color: var(--clr-sec-grey);
}
.contactPageBannerSection .contactPageBanner {
  height: 100%;
}
.contactPageBannerSection .contactPageBanner h1 {
  font-size: 3rem;
  text-align: start;
  color: white;
  background-color: var(--clr-sec-grey);
  padding: 7rem 4rem 4rem 4rem;
}

.form-callSection {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  background-color: var(--clr-sec-grey);
  margin: 1rem;
  padding: 3rem 4rem;
  gap: 2rem;
  color: white;
}
.form-callSection .formTxt #conForm {
  display: flex;
  flex-direction: column;
}
.form-callSection .formTxt #conForm input {
  background-color: transparent;
  height: 2rem;
  border: none;
  margin-bottom: 1rem;
}
.form-callSection .formTxt #conForm input input:active {
  border: none;
}
.form-callSection .formTxt #conForm .inpu {
  border-bottom: 1px solid var(--clr-roseGold);
}
.form-callSection .formTxt #conForm textarea {
  background-color: transparent;
  height: 2rem;
  border: none;
  margin-bottom: 1rem;
}
.form-callSection .formTxt #conForm .formButton {
  background-color: var(--clr-roseGold);
  font-weight: 700;
  font-size: 1.2rem;
  width: 200px;
  color: black;
}
.form-callSection .formTxt #conForm .formButton:hover {
  color: var(--clr-roseGold);
  background-color: transparent;
  border: 1px solid var(--clr-roseGold);
}
.form-callSection .callTxt {
  width: 100%;
  text-align: start;
  border-left: 1px solid white;
  padding-left: 3rem;
}
.form-callSection .callTxt h2 {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  text-align: start;
  color: var(--clr-roseGold);
}
.form-callSection .callTxt h3 {
  padding: 1rem 1rem 1rem 2rem;
  font-size: 1.4rem;
}
.form-callSection .callTxt h4 {
  padding: 1rem 1rem 1rem 2rem;
  font-size: 1.4rem;
}
.form-callSection .callTxt div h4 {
  text-align: center;
}
.form-callSection .callTxt div img {
  width: 50px;
  padding: 0.8rem 0.3rem;
}

.contactContactsSection {
  width: 100vw;
  height: auto;
  padding: 2rem;
}
.contactContactsSection .contactContacts {
  width: 100%;
  padding: 2rem;
}
.contactContactsSection .contactContacts h2 {
  font-size: 1.4rem;
  font-weight: var(--fw-7);
  text-align: center;
  padding: 1rem;
  background-color: var(--clr-golden);
  color: white;
  margin-bottom: 2rem;
}
.contactContactsSection .contactContacts .contactsIndia {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 2rem;
}
.contactContactsSection .contactContacts .contactsIndia .contactIn {
  text-align: center;
  margin-bottom: 2rem;
}
.contactContactsSection .contactContacts .contactsIndia .contactIn h3 {
  font-weight: var(--fw-5);
  font-size: 1.2rem;
  background-color: var(--clr-d-blue);
  padding: 6px 0;
  margin-bottom: 1rem;
  color: white;
}
.contactContactsSection .contactContacts .contactsIndia .contactIn p {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 1rem;
}
.contactContactsSection .contactContacts .contactsIndia span {
  width: 100%;
  display: flex;
  width: 100%;
  height: 2px;
}

@media only screen and (max-width: 890px) {
  .contactPageBannerSection {
    height: 10vh;
  }
  .contactPageBannerSection .contactPageBanner h1 {
    text-align: center;
    padding: 12vh 4rem 1rem 4rem;
  }
  .form-callSection {
    grid-template-columns: 1fr;
    margin-top: 4rem;
    padding: 6rem 1rem;
    gap: 2rem;
  }
  .form-callSection .callTxt {
    text-align: center;
    border-left: none;
    padding: 1rem;
  }
  .form-callSection .callTxt h3 {
    font-size: 1.2rem;
  }
  .contactContactsSection {
    padding: 1rem;
  }
  .contactContactsSection .contactContacts {
    width: 100%;
    padding: 1rem;
  }
  .contactContactsSection .contactContacts h2 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  .contactContactsSection .contactContacts .contactsIndia {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  .contactContactsSection .contactContacts .contactsIndia .contactIn {
    text-align: center;
    margin-bottom: 2rem;
  }
  .contactContactsSection .contactContacts .contactsAbroad .contactAb {
    grid-template-columns: 1fr;
  }
}
.blogBannerSection {
  background-image: url(./public/wavy.png);
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center start;
}
.blogBannerSection .blogBanner {
  height: 100%;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.blogBannerSection .blogBanner .blogBannerCol-1 h1 {
  font-size: 6rem;
  width: 120%;
  color: white;
}
.blogBannerSection .blogBanner .blogBannerCol-2 img {
  width: 700px;
  transform: rotate(160deg);
}
.blogBannerSection .blogBanner .blogBannerCol-3 {
  text-align: center;
}
.blogBannerSection .blogBanner .blogBannerCol-3 button {
  padding: 0.6rem 1.8rem;
}
.blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem 0;
}
.blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs button {
  padding: 0.6rem 1.8rem;
}
.blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img {
  height: 100%;
  margin: 1rem;
  padding: 2rem;
  background: url(./public/development2.png), linear-gradient(rgba(255, 255, 255, 0.256) 50%, black);
  background-blend-mode: hue;
  padding-top: 9rem;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: white;
  border: 0.5px solid black;
  text-align: start;
}
.blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img h2 {
  font-size: 1.3rem;
  margin: 0.4rem 0;
  filter: drop-shadow(black 2px 2px 2px);
}
.blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img p {
  font-size: 0.9rem;
}
.blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img p span {
  font-size: 0.7rem;
  filter: drop-shadow(black 2px 2px 2px);
}

@media only screen and (max-width: 1650px) {
  .blogBannerSection {
    background-image: url(./public/wavy.png);
    height: auto;
    background-size: contain;
    background-position: center center;
    padding-top: 8rem;
  }
  .blogBannerSection .blogBanner {
    height: 100%;
    width: 98%;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 1rem;
    text-align: center;
  }
  .blogBannerSection .blogBanner .blogBannerCol-1 h1 {
    font-size: 4rem;
    width: 100%;
  }
  .blogBannerSection .blogBanner .blogBannerCol-2 img {
    max-width: 700px;
    width: 100%;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 {
    text-align: center;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 button {
    padding: 0.6rem 1.8rem;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs {
    display: flex;
    flex-direction: row;
    flex: 1 300px;
    align-items: center;
    gap: 2rem 0;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img {
    height: 100%;
    margin: 1rem;
    padding: 1rem;
    background: url(./public/development2.png), linear-gradient(rgba(255, 255, 255, 0.256) 50%, black);
    background-blend-mode: hue;
    padding-top: 9rem;
    background-size: contain;
    background-repeat: no-repeat;
    color: white;
    border: 0.5px solid white;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img h2 {
    font-size: 1.3rem;
    margin: 0.4rem 0;
    filter: drop-shadow(black 2px 2px 2px);
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img p {
    font-size: 0.9rem;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img p span {
    font-size: 0.7rem;
    filter: drop-shadow(black 2px 2px 2px);
  }
}
@media only screen and (max-width: 1108px) {
  .blogBannerSection {
    background-image: url(./public/wavy.png);
    height: auto;
    background-size: contain;
    background-position: center center;
    padding-top: 8rem;
  }
  .blogBannerSection .blogBanner {
    height: 100%;
    width: 98%;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem;
  }
  .blogBannerSection .blogBanner .blogBannerCol-1 h1 {
    font-size: 4rem;
    width: 100%;
  }
  .blogBannerSection .blogBanner .blogBannerCol-2 img {
    max-width: 700px;
    width: 100%;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 {
    text-align: center;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 button {
    padding: 0.6rem 1.8rem;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem 0;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img {
    height: 100%;
    margin: 1rem;
    padding: 1rem;
    background: url(./public/development2.png), linear-gradient(rgba(255, 255, 255, 0.256) 50%, black);
    background-blend-mode: hue;
    padding-top: 9rem;
    background-size: contain;
    background-repeat: no-repeat;
    color: white;
    border: 0.5px solid white;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img h2 {
    font-size: 1.3rem;
    margin: 0.4rem 0;
    filter: drop-shadow(black 2px 2px 2px);
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img p {
    font-size: 0.9rem;
  }
  .blogBannerSection .blogBanner .blogBannerCol-3 .bannerCol-3Imgs .banner-col-3img p span {
    font-size: 0.7rem;
    filter: drop-shadow(black 2px 2px 2px);
  }
}
.blogServicesSection {
  position: relative;
}
.blogServicesSection .blogServices {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 2rem;
}
.blogServicesSection .blogServices .blogService {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blogServicesSection .blogServices .blogService .blogServiceText {
  background-color: whitesmoke;
  padding: 2rem;
}
.blogServicesSection .blogServices .blogService .blogServiceText h2 {
  font-size: 1.2rem;
}
.blogServicesSection .blogServices .blogService .blogServiceImg {
  border: 1px solid whitesmoke;
}
.blogServicesSection .blogServices .blogService .blogServiceImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 1rem;
}

@media only screen and (max-width: 1108px) {
  .blogServicesSection {
    position: relative;
  }
  .blogServicesSection .blogServices {
    width: 90%;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .blogServicesSection .blogServices .blogService {
    text-align: center;
    display: flex;
  }
  .blogServicesSection .blogServices .blogService .blogServiceText {
    background-color: whitesmoke;
  }
  .blogServicesSection .blogServices .blogService .blogServiceImg {
    border: 1px solid whitesmoke;
  }
  .blogServicesSection .blogServices .blogService .blogServiceImg img {
    width: 100%;
    max-width: 240px;
    height: auto;
    padding: 1rem;
  }
  .blogServicesSection .blogServices .bs1,
  .blogServicesSection .blogServices .bs3 {
    flex-direction: column-reverse;
  }
  .blogServicesSection .blogServices .bs2,
  .blogServicesSection .blogServices .bs4 {
    flex-direction: column;
  }
}
@media only screen and (max-width: 808px) {
  .blogServicesSection .blogServices {
    width: 96%;
    grid-template-columns: 1fr;
  }
}
.gcta {
  background-color: #4ea6e8;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
}
.gcta button {
  padding: 1rem 10rem;
  background-color: whitesmoke;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gcta button {
    padding: 1rem 5rem;
  }
}
.blogMidBannerSection {
  margin: 0;
  background-color: var(--clr-pri-blu);
  padding: 6rem 0;
}
.blogMidBannerSection .blogMidBanner {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: white;
  gap: 1rem 2rem;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt {
  display: flex;
  flex: 1 1;
  align-items: center;
  gap: 1rem;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt1 img {
  width: 220px;
  height: auto;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 {
  height: 100%;
  border-bottom: 0.2px solid whitesmoke;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 h3 {
  margin: 1rem 0;
  font-size: 1.4rem;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol2 {
  background-image: url(./public/dots-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: black;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.6fr 1fr 0.3fr;
  padding: 2rem;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol2 .blogMidBannerImg {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol2 .blogMidBannerImg h3 {
  margin: 1rem 0;
  font-size: 1.4rem;
}
.blogMidBannerSection .blogMidBanner .blogMidBannerCol2 .blogMidBannerImg p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media only screen and (max-width: 1650px) {
  .blogMidBannerSection {
    margin: 4rem 0;
  }
  .blogMidBannerSection .blogMidBanner {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: white;
    gap: 0 2rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt {
    display: flex;
    flex: 1 1;
    align-items: center;
    gap: 1rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt1 img {
    width: 220px;
    height: auto;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 {
    height: 100%;
    border-bottom: 0.2px solid whitesmoke;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 h3 {
    margin: 1rem 0;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 p {
    margin-bottom: 1rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol2 {
    background-image: url(./public/dots-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: black;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.6fr 1fr 0.3fr;
    padding: 2rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol2 .blogMidBannerImg {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol2 .blogMidBannerImg h3 {
    margin: 1rem 0;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 1108px) {
  .blogMidBannerSection {
    margin: 2rem 0;
  }
  .blogMidBannerSection .blogMidBanner {
    width: 96%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    color: white;
    gap: 4rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt1 img {
    width: 220px;
    height: auto;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 {
    height: auto;
    padding: 2rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 h3 {
    margin: 1rem 0;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol1 .blogMidBannerTxt .blogMidBannerTxt2 p {
    margin-bottom: 1rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol2 {
    background-image: url(./public/dots-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: black;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.6fr 1fr 0.3fr;
    padding: 2rem;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol2 .blogMidBannerImg {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .blogMidBannerSection .blogMidBanner .blogMidBannerCol2 .blogMidBannerImg h3 {
    margin: 1rem 0;
    font-size: 1.8rem;
  }
}
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 1s ease;
}

.slide {
  min-width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: scale(1);
  animation: zoomInEffect 10s ease-in-out forwards;
}

/* // Parallax text, with delayed entrance */
.carousel-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  opacity: 0;
  animation: slideTextIn 1s ease-in-out forwards;
  animation-delay: 0.5s;
}

h1 {
  font-size: 3rem;
}

p {
  font-size: 1.5rem;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  height: 15px;
  width: 15px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dot.active {
  background-color: #717171;
}

/* Zoom-In Effect for Image */
@keyframes zoomInEffect {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
/* Text Animation */
@keyframes slideTextIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animations for Slides */
.slide-animation-1 {
  animation: slideIn 1s ease-in-out forwards;
}

.slide-animation-2 {
  animation: sliceIn 1s ease forwards;
}

.slide-animation-3 {
  animation: fadeZoomIn 1s ease forwards;
}

.slide-out {
  animation: slideOut 1s ease-in-out forwards;
}

/* Slide In Keyframes */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
/* Slice In Keyframes */
@keyframes sliceIn {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* Fade Zoom In Keyframes */
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Mobile Optimization */
@media (max-width: 1108px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .dots {
    bottom: 10px;
  }
}
.gsocialContent {
  width: 100%;
  height: auto;
  background-color: #4ea6e8;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5rem 5%;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 2rem;
}
.gsocialContent .gcontentTxt {
  height: 100%;
  margin-top: 200px;
}
.gsocialContent .gcontentTxt h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.gsocialContent .gcontentTxt p {
  margin-top: 1rem;
}
.gsocialContent .gcontentImg {
  z-index: 1000;
}
.gsocialContent .gcontentImg img {
  width: 100%;
  height: auto;
}

.gsocialContent:before {
  content: "";
  background: url(./public/orbit-circle.svg) no-repeat left center;
  background-size: 600px;
  position: absolute;
  left: -10em;
  top: -10rem;
  width: 600px;
  height: 600px;
  opacity: 0.5;
  animation: spin 50s linear infinite;
}

@media only screen and (max-width: 768px) {
  .gsocialContent {
    width: 100%;
    height: auto;
    background-color: #4ea6e8;
    color: white;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 8rem;
  }
  .gsocialContent .gcontentTxt {
    width: 98%;
    margin: 0 auto;
    height: auto;
    margin-top: 1rem;
    padding: 1.5rem;
  }
  .gsocialContent .gcontentTxt h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .gsocialContent .gcontentTxt p {
    margin-top: 1rem;
  }
  .gsocialContent .gcontentMod {
    height: 100%;
    position: inherit;
    top: 0;
  }
  .gsocialContent .gcontentMod span {
    height: 130px;
    width: 2px;
    background-color: white;
    position: absolute;
  }
  .gsocialContent .gcontentMod span::before {
    content: "";
    height: 2px;
    width: 30px;
    background-color: white;
    position: absolute;
    top: 130px;
  }
  .gsocialContent .gcontentMod span::after {
    content: "";
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid white;
    position: absolute;
    top: 120px;
    left: 30px;
  }
  .gsocialContent .gcontentImg {
    margin-left: -100px;
    overflow-y: hidden;
    overflow-x: visible;
    margin-right: 150px;
    z-index: 1000;
  }
  .gsocialContent .gcontentImg img {
    width: 100%;
    max-width: 700px;
    height: auto;
  }
  .gsocialContent:before {
    content: "";
    display: none;
  }
}
.webflowSection {
  background-color: var(--clr-pri-blu);
  padding-top: 6rem;
}
.webflowSection .webflow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  padding: 4rem;
  margin: auto;
  border-radius: 8px;
  border: 0.5px solid rgb(214, 214, 214);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.webflowSection .webflow .content {
  max-width: 50%;
}
.webflowSection .webflow .content h1 {
  font-size: 2rem;
  color: white;
  margin: 1rem 0;
}
.webflowSection .webflow .content p {
  color: #f0f0f0;
  line-height: 1.5;
  font-size: 1.2rem;
}
.webflowSection .webflow .content ul {
  list-style: none;
  padding: 0;
}
.webflowSection .webflow .content ul li {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}
.webflowSection .webflow .content ul li .icon {
  font-size: 24px;
  color: white;
  margin-right: 10px;
}
.webflowSection .webflow .content ul li h2 {
  font-size: 20px;
  color: white;
}
.webflowSection .webflow .content ul li p {
  font-size: 16px;
  color: #f0f0f0;
}
.webflowSection .webflow .content .learn-more {
  display: inline-block;
  margin-top: 20px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #000;
}
.webflowSection .webflow .image-container {
  max-width: 50%;
}
.webflowSection .webflow .image-container img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .webflowSection .webflow {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .webflowSection .content,
  .webflowSection .image-container {
    max-width: 100%;
  }
  .webflowSection .image-container img {
    width: 100%;
  }
  .webflowSection ul li {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=sstyle.css.map */