
/*
p {
  margin: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}*/

/*.container {
  max-width: 78%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}*/

/*.owl-item{
  width: 370px !important;
}*/
.section-padding {
  padding: 0px 0px;
}

.readmore{
  display:block;width: 144px;height: 144px;position: absolute;bottom: -73px;right: 77%;
}
/* Utility for merged images */
.merged-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.merged-image-wrapper img {
  position: absolute;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
}

/* CSS for section section:Header */
#header-section {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo img {
  height: 60px;
  width: auto;
}
/*.teamImg img{
      height: 250px !important;
      width: 250px !important;
  }*/

/*  .owl-stage{
    width: 2000px !important;
  }*/
.main-nav ul {

    align-content: var(--align-content);
    align-items: var(--align-items);
    align-self: auto;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-wrap: var(--flex-wrap);
    justify-content: var(--justify-content);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-black);
  font-family: "Poppins", Sans-serif;

}

.main-nav a.active {
  color: var(--primary-teal);
  position: relative;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-teal);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
  
  .main-nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* CSS for section section:Hero */
#hero-section {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 50px;
}

.hero-collage {
  position: relative;
  height: 800px;
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 100px;
  left: 0;
  width: 80%;
  height: 700px;
  background-color: #d9d9d9;
  z-index: 1;
}

.hero-img-main {
    position: absolute;
    width: 100%;
    height: 500px;
    z-index: 2;
}

.hero-img-secondary {
  position: absolute;
  top: 150px;
  left: 50px;
  width: 40%;
  height: auto;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .hero-collage {
    height: 600px;
  }
  .hero-bg {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-collage {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    padding: 20px;
  }
  
  .hero-bg {
    display: none;
  }
  
  .hero-img-main, .hero-img-secondary {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 20px;
  }
}

/* CSS for section section:About */
#about-section p{
      color: var(--text-light-gray);
      font-size: 16px;
}
#about-section {
    background-color: #fff;
    width: 65%;
    left: 0;
    right: 0;
    position: relative;
    margin: auto;
    margin-top: -177px;
    z-index: 111;
    padding: 75px 135px;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0px 0px 10px 0px rgba(194.07626037597657, 194.07626037597657, 194.07626037597657, 0.5);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.about-title-col {
      position: relative;
      bottom: 0;
      top: 0;
      margin: auto;
  }

.subtitle {
    font-family: Popins;
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    margin-top: 12px;
}

.about-title-col h2 {
  font-family: "Cinzel", Sans-serif;
      font-size : 35px;
      font-weight: 600;
      color: #000000;
}

.circle-decoration {
  margin-top: 40px;
  width: 150px;
  opacity: 0.8;
}

.about-text-col p {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-black);
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .circle-decoration {
    display: none;
  }
}

/* CSS for section section:Projects */
#projects-section {
  background-color: #fff;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.projects-info {
  max-width: 500px;
}

.projects-info h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-black);
}

.projects-info p {
  color: var(--text-light-gray);
  font-size: 16px;
}

.projects-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.view-all {
  color: var(--primary-blue);
  font-weight: 600;
  border-bottom: 1px solid var(--primary-blue);
  padding-bottom: 2px;
}

.slider-controls {
  display: flex;
  gap: 20px;
}

.slider-controls img {
  cursor: pointer;
  width: 40px;
}

.projects-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.project-card {
  background: #fff;
}

.card-image {
  background-color: #f5f0ea;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  margin-bottom: 5px;
}

.price {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-black);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .projects-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .readmore{
    display: none;
  }
  .newProject {
      top: 0em;
      position: relative;
  }
  #teamCarousel .owl-nav {
    width: auto;
  }

  .searchSubscribe{
    display: none;
  }

  .blogPostArea section{
    top: 8em; 
  }
  section{
    width: 100% !important; 
  }
  .designArea{
    margin-top: 0px;
  }
  .about_line{
    border-top: 0px solid transparent !important;
  }
  .featureH3Area {
      margin-top: 5%;
  }
  #about-section {
      width: 100%;
      left: 0;
      right: 0;
      padding: 10px;
      font-size: 14px;

  }
/*  .homeThreeSlider{
    padding-top: 69%;
  }*/
  .container{
    width:98% !important;
  }
  .worksTop{
      margin-top: 175px;padding: 15px;
  }
  .menuBtn{
    display: block;
  }
  .logoImg {
      width: 111px;
      margin: 0 auto;
      position: relative;
      left: -15px;
      right: 0;
      margin: auto !important; 
  }
.teamImg img{
      height: 250px !important;
      width: 250px !important;
  }
/*  .owl-carousel.owl-drag .owl-item {
    height: 280px;
        width: 280px !important;
  }
  .owl-stage{
    width: 2000px !important;
  }*/
  #teamCarousel{
    width: 136% !important;
   position: relative;
   top: 132px;
   left: -85px;
   height: 248px;
  }
/*.calltoActionArea {
    position: relative;
    right: 0;
    top: 7%;
    margin-right: 0px;
}*/
.calltoActionArea {
    position: relative;
    right: 0;
    top: 5em;
    margin-right: 0px;
    height: 16em;
}
.calltoActionArea h2 {
    text-align: center;
    font-family: Cinzel;
    position: absolute;
    font-size: 18px;
    top: -12em;
    left: 0 !important;
    right: 0;
}
.space{
      height: 369px;
}
}

@media (max-width: 768px) {
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .pTimg {
      width: 444px;
      height: 420px;
  }
  #gallMix .mix:nth-child(1){
      float: right;
  }
  #gallMix .mix:nth-child(2){
      float: left;
  }
  #gallMix .mix:nth-child(3){
      float: right;
  }
  #gallMix .mix:nth-child(4){
      float: left;
  }
  
  
  .projects-action {
    align-items: flex-start;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .projects-slider {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Services */
#services-section {
  background-color: #fff;
}

.services-header {
  margin-bottom: 80px;
  padding: 18px;
}

.section-label {
  font-family: var(--font-sans);
  color: var(--text-gray);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.services-header h2 {
    font-family: "Cinzel", Sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 0.4px;
    color: #324059;

}

.services-header .highlight {
  color: var(--primary-teal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
  text-align: center;
  padding: 10px;
  position: relative;
  left: 15px;
}

.service-icon {
  width: 100%;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
}

.service-icon img {
    height: 75px;
    width: 75px !important;
    padding: 8px;
}

.service-num {
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--text-gray);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.service-item p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: .92fr;
    gap: 60px;

  }
  
  .services-header h2 {
    font-size: 36px;
  }
}

/* CSS for section section:Stats */
#stats-section {
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
  margin-top: 4%;
}

.stats-container {
  position: relative;
  height: 500px;
  left: 85px;
}

.stat-item {
  position: absolute;
  z-index: 2;
}
.stat-circle, .stat-circle-small {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    right: 0;
    left: 0;
    margin: auto;
}
.stat-circle img, .stat-circle-small img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}
.stat-projects {
    position: relative;
    right: -52%;
    bottom: -69%;
    width: min-content;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.stat-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-content .number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
}

.stat-content .label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  margin-top: 5px;
}

/* Positioning */
.stat-clients {
    top: 36%;
    left: 3%;
    width: 200px;
    height: 200px;
}

.stat-awards {
    bottom: 66%;
    left: 25%;
    width: 200px;
    height: 200px;
}
.stat-years {
    bottom: 25%;
    right: 10%;
    width: 200px;
    height: 200px;
}
.stat-image-1 {
    position: absolute;
    top: 31%;
    left: 19%;
    width: 28%;
    z-index: 1;
}
.stat-image-2 {
    position: absolute;
    bottom: 0;
    right: 33%;
    width: 19%;
    z-index: 1;
    top: -21%;
}
@media (max-width: 1024px) {
  .stats-container {
    height: 600px;
  }
}

@media (max-width: 768px) { 
  #stats-section {
    padding: 40px 0;
  }
  
.stats-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    left: 0;
}
  .stat-image-1 img{
    object-fit: scale-down;
    object-position: 28px 0px;
  }
  .stat-image-2 img{
    object-fit: scale-down;
    object-position: 22px 0px;
  }
  
  .readmore{
    display: none;
  }
  .stat-item, .stat-image-1, .stat-image-2 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 300px;

  }
  
  .stat-circle img, .stat-circle-small img {
    animation: none;
    object-position: -52px 0px;
  }

  .pTimg {
      width: 100%;
  }
}

/* CSS for section section:Awards */
#awards-section {
  background-color: #000;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.awards-content {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.awards-content .subtitle {
  color: var(--text-light-gray);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.awards-content h2 {
  font-size: 48px;
  color: #fffcf9;
}

.awards-image {
  width: 100%;
  opacity: 0.8;
}

.awards-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* CSS for section section:Testimonials */
#testimonials-section {
  background-color: #fff;
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 42px;
  margin-top: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-black);
  margin-bottom: 30px;
}

.client-info h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-info span {
  font-size: 14px;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Instagram */
#instagram-section {
  background-color: #fff;
  margin-top: 5%;
}

.insta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.insta-header h2 {
  font-size: 32px;
  font-family: var(--font-sans);
}

.follow-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-black);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.insta-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;

}

@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .insta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* CSS for section section:Footer */
#site-footer {
  background-color: #fff;
  padding-top: 80px;
  border-top: 1px solid #eee;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-talk {
  border: 1px solid #000;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.link-col h4, .contact-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.link-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-col li {
  margin-bottom: 10px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.contact-item img {
  width: 20px;
  margin-top: 5px;
}

.contact-item p {
  max-width: 300px;
  font-size: 14px;
}

.social-col {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 45px;
}

.social-col img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-gray);
}

@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 10px;
    text-align: center;
  }
}



/**** NEW SLIDER *****/

