:root {
  --primary-first-color: #273883;
  --second-color: #ffcd00;
  --background-color: #f5f5f5;
  --text-color: #273883;
  --footer-bg-color: #000;
  --footer-text-color: #fff;
  --footer-icon-hover: rgba(0, 0, 0, 0.3);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
}

.header {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar a:not(:last-child)::after {
  color: var(--text-color);
}
.navbar a {
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s;
}

.navbar a:hover {
  color: var(--second-color);
}


/* .navbar-collapse {
  display: none;
} */

/* Hero Section Styles */
.hero {
  background-image: url("../assets/images/hero.png");
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

 /* brief and insight section */
 .section-brief-insight {
  padding: 4rem 5rem;
  position: relative;
  width: 100%;
  min-width: 330px;
}

.section-brief-insight .card-content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.section-brief-insight .card-content>div {
  position: relative;
  width: 80%;
}

/* .brief-ball-img {
  position: absolute;
  left: -2vw;
  top: -1vw;
  width: 90px;
  z-index: -1;
} */
.section-brief-insight .brief-ball-img {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 90px;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.brief-ball-img img {
  width: 100%;
  height: auto;
  filter: blur(3px);
}
.section-brief-insight .brief-ball-img.execution-ball {
  width: 140px;
}
.card-text {
  font-size: 1.8rem;
}

.insight-ball-img {
  position: absolute;
  left: 4vw;
  top: -2vw;
  width: 150px;
  z-index: -1;
}

.insight-ball-img img {
  width: 100%;
  height: auto;
  filter: blur(3px);
}


@media (max-width: 992px) {
  .section-brief-insight {
    padding: 2rem 5rem;
    min-width: 330px;
  }

  .card-text {
    font-size: 1rem;
  }

  .section-brief-insight .card-content>div {
    width: 100%;
    padding: 1rem 0;
  }

  .section-brief-insight .brief-ball-img {
    width: 70px;
  }
  .section-brief-insight .brief-ball-img.execution-ball {
    width: 110px;
  }
  .insight-ball-img {
    left: 6vw;
    top: -2vw;
    width: 100px;
  }
}
@media (max-width: 768px) {
  .card-text {
    font-size: 1.2rem;
  }

}
@media (max-width: 576px) {
  .section-brief-insight {
    padding: 2rem 2rem;
  }
}
/* section started from here */
.product-showcase {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.product {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.product img {
  width: 100px;
  margin-bottom: 10px;
}

.product p {
  font-size: 1rem;
}

.product:hover {
  transform: scale(1.05);
}



@media only screen and (max-width: 762px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .product-showcase {
    flex-direction: column;
    gap: 15px;
  }

}

@media only screen and (max-width: 576px) {
  
}
@media (min-width: 1024px) and (max-width: 1200px) {
 
}



/* section-other-work */

.section-other-work {
  background: #ffffff;
  display: flex;
  justify-items: center;
  padding: 4rem 5rem;
}

.section-other-work {
  background: #ffffff;
  display: flex;
  justify-items: center;
  padding: 4rem 5rem;
}

.section-other-work .other-work-title {
  font-weight: 600;
  font-size: 2.5rem;
  color: #000;
  text-align: center;
  position: relative;
  display: flex;
  margin: 0.5rem 0 4rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.section-other-work .other-work-title .title-text {
  width: max-content;
  padding: 0rem 1rem;
}

.section-other-work .other-work-title .left_lines {
  height: 2px;
  background-color: #000;
  flex-grow: 1;
}

.section-other-work .other-work-title .right_lines {
  height: 2px;
  background-color: #000;
  flex-grow: 1;
}

.section-other-work .row {
  display: flex;
  justify-content: space-around;
}

.section-other-work .row>div {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section-other-work .col1-ball {
  position: absolute;
  right: -5%;
  top: -9%;
  width: 32%;
  z-index: 1;
}

.section-other-work .column1card {
  /* background-image: radial-gradient(#1dbdf3, #044484); */
  width: 100%;
  height: auto;
  /* height: 450px; */
  border-radius: 30px;
  /* overflow-y: hidden; */
}

.section-other-work .column1card img {
  width: 100%;
  height: auto;
  /* height: 750px;
  object-fit: cover; */
}

.section-other-work .col2-ball {
  position: absolute;
  right: 17%;
  bottom: -8%;
  width: 26%;
  z-index: 1;
}

.section-other-work .column2card {
  /* filter: brightness(0.2); */
  width: 100%;
  /* height: 450px; */
  height: auto;
  border-radius: 30px;
}

.section-other-work .column2card img {
  width: 100%;
  height: auto;
  /* height: 100%;
  object-fit: cover; */
  border-radius: 30px;
}

.section-other-work .col3-ball {
  position: absolute;
  right: -4%;
  top: 9%;
  width: 22%;
  z-index: 1;
}

.section-other-work .content-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 30px;
}
.section-other-work .content-container:hover .hover-effect {
  transform: translate(-50%, -7%);
}
.section-other-work .column2card~.hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  height: 54%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0 0 2rem 2rem;
  transition: transform 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* padding: 1rem 0 0; */
}
.section-other-work .column2card~.hover-effect .middletext {
  position: relative;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  color: #ffffff;
  width: 86%;
  font-size: 1.75rem;
  text-align: left;
}
.section-other-work .column2card~.hover-effect .middletext .work-title{
  font-size: 2.2rem;
  font-weight: 600;
}
.section-other-work .column2card~.hover-effect .middletext .work-text{
  font-size: 1.6rem;
  font-weight: normal;
  text-transform: capitalize;
}

.section-other-work .column2card~.hover-effect .middletext .mid_line {
  width: 100%;
  height: 1px;
  margin: 0.2rem 0 0.5rem;
  background-color: #ffffff;
}

.section-other-work .column2card~.hover-effect .middletext .know-more {
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
  color: #ffffff;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
}
.section-other-work .column2card~.hover-effect .middletext .know-text {
  padding-right: 0.5rem;
  font-size: 1.6rem;
}

.section-other-work .column3card {
  /* background: url("./assets/images/beautiful-bast-field-with-green-wildflowers-blue-sky.png") no-repeat; */
  /* background-size: cover; */
  /* background-position-x: 46%; */
  width: 100%;
  height: auto;
  /* height: 450px; */
  border-radius: 30px;
}

.section-other-work .column3card img {
  width: 100%;
  height: auto;
  /* height: 100%;
  object-fit: cover; */
  border-radius: 30px;
}

.section-other-work .decorative-ball {
  filter: blur(3px);
}



@media (max-width: 1400px) {
  .section-other-work .column2card~.hover-effect .middletext .work-title{
    font-size: 1.9rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .work-text{
    font-size: 1.4rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-text {
    font-size: 1.4rem;
  }
  
}
@media (max-width: 1200px) {
  /* .section-other-work .column2card~.hover-effect{
    padding: 0.5rem 0 0;
  } */
  .section-other-work .column2card~.hover-effect .middletext .work-title{
    font-size: 1.6rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .work-text{
    font-size: 1.1rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-text {
    font-size: 1.1rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-more{
    margin: 0rem 0 0;
  }
}
@media (max-width: 992px) {
  .section-other-work {
    padding: 3rem 5rem;
  }
  .section-other-work .other-work-title {
    font-size: 1.5rem;
  }
  /* .section-other-work .column2card~.hover-effect{
    padding: 2rem 0 0;
  } */
  .section-other-work .column2card~.hover-effect .middletext .work-title{
    font-size: 1.6rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .work-text{
    font-size: 1.1rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-text {
    font-size: 1.1rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-more{
    margin: 0rem 0 0;
  }
}
@media (max-width: 768px) {
  .section-other-work {
    padding: 1rem;
  }
  .section-other-work .col1-ball {
    right: 0%;
    top: -14%;
  }

  .section-other-work .col3-ball {
    right: -2%;
  }
  .section-other-work .column2card~.hover-effect .middletext{
    width: 80%;
  }
  .section-other-work .column2card~.hover-effect .middletext .work-title{
    font-size: 2.25rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .work-text{
    font-size: 1.75rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-text {
    font-size: 1.75rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-more{
    margin: 0.5rem 0 0;
  }
}
@media (max-width: 576px) {
  .section-other-work .column2card~.hover-effect .middletext{
    width: 85%;
  }
  .section-other-work .column2card~.hover-effect .middletext .work-title{
    font-size: 1.5rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .work-text{
    font-size: 1.15rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-text {
    font-size: 1.15rem;
  }
  .section-other-work .column2card~.hover-effect .middletext .know-more{
    margin: 0rem 0 0;
  }
}

/* for all section */

.container-fluid2 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-large {
  position: relative;
}
@media (min-width: 2000px) {
  .container-large {
    width: 100%;
    max-width: 100rem;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 576px) {
  .container-large {
    min-width: 330px;
  }
}
.container-fluid2 {
  position: relative;
}

@media (min-width: 993px) {
  .container-fluid2 {
    padding: 0 8vw;
  }
} 
@media (min-width: 2000px) {
  .container-fluid2 {
    padding: 0 2vw;
  }
}
/* @media (max-width: 992px) {
  .container-fluid {
    padding: 0 8vw;
  }
}
@media (max-width: 481px) {
  .container-fluid {
    padding: 0 8vw;
  }
}