@font-face {
    font-family: 'webfont4';
    src: url('./assets/font/fonts/fonnts.com-Contralto_Big_Black.otf');
}
@font-face {
    font-family: 'webfont';
    src: url('./assets/font/mosse-bold.ttf');
}
@font-face {
    font-family: 'webfont2';
    src: url('./assets/font/mosse-extra-bold.ttf');
}
@font-face {
    font-family: 'webfont3';
    src: url('./assets/font/WerkHaus\ W00\ Bold.ttf');
}




:root{
    --red:#9c0e1e;
    --blue-opac:#a1c3cc23;
}

body{
    /* background-color: #eaeaea; */
    overflow-x: hidden;
    width: 100%;
}
.navdiv{
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: 0.5s;

}
header .navbar.navbar-scrolled{
    position: fixed;
    top: 0;
    margin: 0;
    width: 100%;
    border-radius: 0;
    padding-left: 10px;
    padding-right: 10px;
}
header .navbar .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -145px;
}
.navbar{
    width: 90%;
    margin-top: 10px;
    border-radius: 8px;
   
}
header .nav-link{
    font-weight: bold;
}
header .dropdown-toggle::after {
    display: none;
}

header{
    height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.header-slider.container{
    height:600px;
    padding:50px;
    background-color: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}
.header-slider #slide{
    width:max-content;
    margin-top:50px;
}
.header-slider .item{
    width:200px;
    height:300px;
    background-position: 50% 50%;
    display: inline-block;
    transition: 0.5s;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top:50%;
    transform: translate(0,-50%);
    border-radius: 20px;
    box-shadow:  0 30px 50px #505050;
}
.header-slider .item:nth-child(1),
.header-slider .item:nth-child(2){
    left:0;
    top:0;
    transform: translate(0,0);
    border-radius: 0;
    width:100%;
    height:100%;
    box-shadow: none;
}
.header-slider .item:nth-child(3){
    left:50%;
}
.header-slider .item:nth-child(4){
    left:calc(50% + 220px);
}
.header-slider .item:nth-child(5){
    left:calc(50% + 440px);
}
.header-slider .item:nth-child(n+6){
    left:calc(50% + 660px);
    opacity: 0;
}
.header-slider .item .content{
    position: absolute;
    top:50%;
    left:100px;
    width:300px;
    text-align: left;
    padding:0;
    color:#eee;
    transform: translate(0,-50%);
    display: none;
    font-family: system-ui;
}
.header-slider .item:nth-child(2) .content{
    display: block;
    z-index: 11111;
}
.header-slider .item .name{
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    filter: drop-shadow(3px 3px 2px #000);
    animation:showcontent 1s ease-in-out 1 forwards
}
.header-slider .item .des{
    margin:20px 0;
    opacity: 0;
    animation:showcontent 1s ease-in-out 0.3s 1 forwards
}
.header-slider .item button{
    padding:10px 20px;
    border:none;
    opacity: 0;
    animation:showcontent 1s ease-in-out 0.6s 1 forwards
}
@keyframes showcontent{
    from{
        opacity: 0;
        transform: translate(0,100px);
        filter:blur(33px);
    }to{
        opacity: 1;
        transform: translate(0,0);
        filter:blur(0);
    }
}
.header-slider .buttons{
    position: absolute;
    bottom:30px;
    z-index: 2;
    text-align: center;
    width:100%;
}
.header-slider .buttons button{
    width:50px;
    height:50px;
    border-radius: 50%;
    border:0;
    transition: 0.5s;
}.header-slider .buttons button:hover{
    background-color: #bac383;
}

@media only screen and (max-width:500px) {
    .header-slider .item:nth-child(3){
        left: 85%;
    }
    .header-slider .item .content {
        left: 20px;
    }
}
/*....header..........................................end*/
/*  ================== about ============================== */
.container-about {
    display: flex;
    /* flex-wrap: wrap; */
    
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    /* margin: 0 auto; */
    margin-top: 3rem;
    padding: 20px;
    gap: 20px;
}
.image-container{
    width: 50%;
}
@media (max-width:768px){
    .image-container {
        width: 100% !important;
        margin-top: 2rem;
    }
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-container {
    max-width: 600px;
}

.content-container h2 {
    margin-top: 0;
    font-size: 47px;
    /* font-weight: bold; */
    /* font-family: 'roboto'; */
}

.content-container p {
    line-height: 1.6;
    margin-bottom: 1em;
    margin-top: 2rem;
    font-family: 'Helvetica';   
}
.backgroundicon {
    position: absolute;
    top: 0;
    right: 0;
}
.backgroundicon img{
    transform: translateY(-75px);
    height: 12rem;
}
.btnabout{
    cursor: pointer;
    width: fit-content;
    border-radius: 20px;
    padding: 15px;
    font-family: 'webfont';
    background: #9c0e1e;
    color: white;
    display: flex;
    gap: 7px;
    align-content: center;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btnabout:hover{
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.round-shape {
    display: inline-block;
    width: 10px;   /* Adjust the width */
    height: 10px;  /* Adjust the height */
    background-color: #fff;  /* Set your desired background color */
    border-radius: 50%;  /* This makes the span round */
}
.moreabout{
    padding-top: 2px;

}
.content-container h2{
    font-family: 'webfont';
}
/* Responsive Styles */
@media (max-width: 768px) {
    .container-about {
        flex-direction: column;
        padding: 10px;
    }

    .content-container h2 {
        font-size: 1.5em;
    }
}
/* ====================================================== */
/* ===================  home gallery ==================== */
.portfolio-section {
    position: relative;
    padding: 50px 0;
    margin-top: 4rem;
}

.portfolio-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500PX;
    background-image: url(./assets/banner/backgroundimage.webp);
    /* background-size: cover; */
    background-position: BOTTOM;
    z-index: -1;
    /* filter: blur(2px); */
    opacity: 0.8;
    /* background-color: white;: Adjusts the transparency of the background image */
}

.portfolio-heading {
    position: relative;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.portfolio-heading::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #fff;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    transform: translateY(75px);
}

.image-card {
    border: 12px solid white;
    width: calc(22% - 20px);
    height: 295px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.image-card:hover{
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}

@media screen and (max-width: 768px) {
    .image-card {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .image-card {
        width: calc(100% - 20px);
    }
}
.viewmore{
    text-align: center;
border: 1px solid none;
width: fit-content;
margin: 0 auto;
padding: 10px 25px;
background: brown;
color: white;
border-radius: 15px;
cursor: pointer;
font-weight:bold ;
transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.viewmore:hover{
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* ===================  home gallery end ================ */

/* ===  serives == */
.containers {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* background-color: #e0e0e0; */
}

.text-content {
    background-color: white;
    padding: 30px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* margin-right: -30px; */
    z-index: 1;
}

.text-content h2 {
    color: #D35400;
    font-size: 18px;
    margin-bottom: 10px;
}

.text-content h3 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
}

.text-content p {
    color: #7f8c8d;
    font-size: 14px;
}

.image-content {
    max-width: 400px;
    max-height: 300px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
}

.slide {
    width: 100%;
}

.slick-initialized .slick-slide {
    display: flex !important;
}

@media (max-width:768px){
    .slick-initialized .slick-slide {
    display: flex;
    flex-direction: column;

}
}
.containerservicehead{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.heading{
    width: 40%;
}
.heading h3{
    font-size: 24px;
    font-family: 'webfont3';
}
.para{
    width: 40%;
}
.backgroundservice{
    margin-top: 3rem;
content: "";
/* position: absolute; */
top: 0;
left: 0;
width: 100%;
/* height: 600vh; */
background-image: url(./assets/banner/Untitled\ design.png);
background-size: cover;
background-position: BOTTOM;
z-index: -1;

}
.containerservicehead{
    gap: 50px;
    margin-bottom: 3rem;
}

.containerservicehead .heading h3{
    font-size: 50px;
    margin-top: 2rem;
    
}
.containerservicehead .para p{
    margin-top: 4rem;
}
@media (max-width:768px){
    .heading{
        width: 100%;
    }
    .para{
        width: 100%;
    }
}

/* ====== */

/* ---copyright */
.footer-copyright {
    margin-top: 2rem;
    margin-bottom: 2rem;

    color: black;
    padding: 15px 30px;
    text-align: center;
  }

  .footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }

  .footer-copyright-text {
    color: black;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 500;
  }

  .footer-copyright-link {
    color: black;
    text-decoration: none;
  }
  /* ----- */
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #333;
    /* background: url('assets/banner/Untitled\ design.png'); */
    /* position: absolute; */
    width: 100%;
    color: white;
    padding: 20px;
    gap: 20px; /* Adjust gap between divs */
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    margin-bottom: 20px;
  }
  
  .logo-section img.footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
  }
  
  .footer-description {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .links-section h3,
  .contact-section h3,
  .map-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .links-section{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  @media (max-width:768px){
    .links-section{
        align-items: start;
    }
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 5px;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .contact-section p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .map-section iframe {
    border: none;
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
    }
  
    .footer-section {
      max-width: 100%;
    }
  }

 @media (max-width:768px){
    .containerservicehead{
        display: flex;
        flex-direction: column;
        gap: 0px;
      }
 }


  /* ================ reviewa */
  .person {
    width: 100px;
    height: auto;
    object-fit: cover;
}

.img-div img {
    border-radius: 50%;
    width: 100px;
    height: 90px;
}

.card-body-review {
    border: 2px solid black;
    width: fit-content;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.cmnt-div {
    width: 200px;
}

.name-star-div h3 {
    font-size: 32px;
    margin: 0;
}

.name-star-div {
    margin-left: 10px;
}

.stars img {
    width: 90px;
}

.backleaf {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80%;
    z-index: 1;
    opacity: 0.2;
}

.container-review {
    /* display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px; */
    margin-top: 3rem;
    margin-bottom: 3rem;
} 

.headingreviews {
    margin: 20px;
    text-align: center;
    font-family: 'webfont';
}

.underline {
    display: inline-block;
    position: relative;
}

.underline::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 40%;
    height: 2px;
    background-color: #000;
}

.headingreviews h3 {
    font-size: 32px;
}
.slides{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .card{
    display: flex;
    justify-content: center;
} */
.card .slick-slide{
    border: none;
}
.slick-initialized .slick-slide{
    align-items: center;
}
@media (max-width:768px){
.slick-initialized .slick-slide {
   display: flex;
   justify-content: center;
}
}



.container-review {
    height: 100%; 
    position: relative;
}

@media (max-width:768px) {
    #reviews {
        height: 100%; 
        position: relative;
    }
}
 

.headingreviews{
    margin: 20px;
    text-align: center;
    font-family: 'webfont';
}
.underline {
    display: inline-block;
    position: relative;
}

.underline::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px; /* Adjusts the position of the underline */
    width: 40%; /* Adjusts the width of the underline */
    height: 2px; /* Adjusts the thickness of the underline */
    background-color: #000; /* Adjusts the color of the underline */
}
.headingreviews h3{
    font-size: 32px;
}


/* ------ watsapp icon ------ */
.whatsapp-button {
    position: fixed;
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: width 0.3s ease-in-out;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-text {
    display: none;
    margin-left: 10px;
    white-space: nowrap;
    text-decoration: none;
    color: white;
}

.whatsapp-button:hover {
    width: 150px; /* Expand the button width on hover to show the text */
    border-radius: 25px; /* Adjust the border-radius to keep the shape */
}

.whatsapp-button:hover .whatsapp-text {
    display: inline-block;
}
/* ------ */
.whatsapp-buttons {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    background-color: brown;
    color: white;
    padding: 10px;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: width 0.3s ease-in-out;
    cursor: pointer;
}

.whatsapp-buttons a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.whatsapp-buttons i {
    font-size: 24px;
}

.whatsapps-text {
    display: none;
    margin-left: 10px;
    white-space: nowrap;
    text-decoration: none;
    color: white;
}

.whatsapp-buttons:hover {
    width: 150px; /* Expand the button width on hover to show the text */
    border-radius: 25px; /* Adjust the border-radius to keep the shape */
}

.whatsapp-buttons:hover .whatsapps-text {
    display: inline-block;
}






/* ------ Instagram icon ------ */
.instagram-button {
    position: fixed;
    right: 0;
    top: 50%; /* Change position if needed */
    transform: translateY(-50%);
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 10px;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: width 0.3s ease-in-out;
}

.instagram-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.instagram-button i {
    font-size: 24px;
}

.instagram-text {
    display: none;
    margin-left: 10px;
    white-space: nowrap;
    text-decoration: none;
    color: white;
}

.instagram-button:hover {
    width: 150px;
    border-radius: 25px;
}

.instagram-button:hover .instagram-text {
    display: inline-block;
}
/* --------------------------------------------------- */
/* ==================================================== */
/* ===================  about page ==================== */
.nav-item{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
}

.aboutsection {
    overflow: hidden;
    /* background: url(./assets/images/anchor.jpeg);
    background-size: cover;
    padding-bottom: 20px; */
  
  }
  
  .about {
    height: 100%;
    width: 100%;
    display: flex;
    padding: 2rem;
    gap: 20px;
  }
  
  .aboutpic {
    height: auto;
    width: 50%;
    display: flex;
    /* padding: 20px; */
    /* justify-content: center; */
    /* align-items: center; */
  }
  .aboutcontent {
    height: auto;
    width: 50%;
    /* margin-top: 5rem ; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* padding: 20px;  */
  }
  
  .aboutpic img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
  .aboutcontent h2{
    font-family: 'webfont';
    font-size: 42px;
    /* text-transform: uppercase; */
    /* font-size: 20px; */
  }
  .aboutcontent h6{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 30px;
    /* font-weight: 700; */
  }
  
  .aboutcontent {
    height: auto;
    width: 50%;
    /* margin-top: 3rem; */
    /* padding: 20px; */
  }
  .aboutcontent h3{
    font-family: 'webfont3';
    font-size: 36px;
    color: #9c0e1e;
  }

  @media (max-width: 768px) {
    .about {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      gap: 20px;
    }
  
    .aboutpic, .aboutcontent {
      width: 100%;
      margin-top: 0;
    }
  
    .aboutcontent {
      margin-top: 1rem;
      text-align: center;
    }
  
    .aboutpic img {
      max-width: 100%;
      height: auto;
    }
  }
  /* -------------------------- */
  .about-ceo-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
    /* background-color: #f9f9f9; */
}

.content {
    max-width: 50%;
}

.content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'webfont';
    color: #9c0e1e;
    margin-top: 1rem;
}

.content p {
    font-size: 16px;
    line-height: 1.5;
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    text-align: center;
}

.feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .about-ceo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .features {
        flex-direction: column;
    }
}

/* ---- anchors ---- */
.servicecontainer {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }
  
  .servicecard-items {
    background-color: #f9f9f9;
    /* Light gray background */
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 370px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
  }
  @media (max-width:768px){
    .servicecard-items{
        width: 100% !important;
        height: 100% !important;
    }
  }
  
  .service-icon-container {
    width: 125px;
    height: 125px;
    background-color: transparent;
    /* White background for the icon container */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  }
  
  .service-icon-container img {
    width: 100%;
    height: auto;
  }
  
  .servicecard-items h3 {
    font-size: 1.5em;
    margin-top: 60px;
    color: #333;
    margin-top: 6rem;
    /* Darker text color */
    z-index: 2;
    position: relative;
  }
  
  .servicecard-items p {
    color: #777;
    /* Lighter text color */
    font-size: 1em;
    line-height: 1.5;
    z-index: 2;
    position: relative;
  }
  
  .servicecard-items::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
  }
  
  .servicecard-items:hover::before {
    opacity: 1;
  }
  
  #card1:hover {
    background: url(./assets/images/anchor.jpeg) center/cover no-repeat;
    color: white;
  }
  #card1:hover .service-icon-container {
    color: white;

  }
  #budget:hover {
    background: url(./assets/services/anchorpagenew.jpg) center/cover no-repeat;
    color: white;
  }
  
  #risk:hover {
    background: url(./assets/services/anchor3.jpeg) center/cover no-repeat;
    color: white;
  }
  
  #quality:hover {
    background: url(./assets/services/Photo\ .jpg) center/cover no-repeat;
    color: white;
  }
  /* ---- artist management  -----*/

  #AM1G:hover {
    background: url(./assets/services/AMguidence.png) center/cover no-repeat;
    color: white;
  }
  
  #AM2T:hover {
    background: url(./assets/services/AMtalent.png) center/cover no-repeat;
    color: white;
  }
  #AM3B:hover {
    background: url(./assets/services/Ambusinnesorg.png) center/cover no-repeat;
    color: white;
  }
  #AM4BB:hover {
    background: url(./assets/services/AMbrand.png) center/cover no-repeat;
    color: white;
  }
  /* -------------------------- */
 
  
  .servicecard-items p {
  
    font-size: 16px;
  
  }
  
  .servicecard-items h3 {
    font-family: 'webfont';
  }
  
  .servicecard-items:hover h3,
  .servicecard-items:hover p {
    color: white;
  }
  
  @media (max-width:768px) {
    .servicecontainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4rem;
    }
  }

  /* -----why choose us---- */
  .a,
  .b,
  .c,
  .d {
    border: 1px solid black;
    text-align: center;
    /* width: 25rem; */
    background: #9d1616;
    /* background: whitesmoke; */
    /* color: black; */
    color: white;
    padding: 10px;
    margin-top: 2rem;

  }

  .contentanchor {
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }
  .anchorpagetitle h3{
    margin-top: 1rem;
    font-size: 22px;
    
  }
  .anchorpagetitle p{
    margin-top: 2rem;
    font-size: small;
  }
  .whychooseus h3{
    font-family: 'webfont3';   
    font-size: 35px;
    margin-top: 2rem;
    
  }

  @media (max-width:768px) {
    .contentanchor {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
  @media (max-width:768px){
    .containeranchors{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .text-anchorcontainer{
        width: 100% !important;
        margin-top: 0rem;
    }
    .headingmain{
        line-height: 3rem;
        font-size: 30px;
    }
}

/* ========================================= */
.containeranchors {
    display: flex;

}


.title h2 {
    font-family: 'webfont3';
    font-size: 45px;
    text-align: center;
}



.headingmain {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-family: 'poppins';
    font-size: 48px;
    font-weight: 800;
    text-align: center;
}

.containeranchors {
    width: 100%;
    height: 100%;
}

.image-container {
    width: 50%;
}

.text-anchorcontainer {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-anchorcontainer h4 {
    font-size: 40px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-family: 'math';
    font-weight: bold;
}

.text-anchorcontainer p {
    font-size: 20px;
}

.headingouranchors h3 {
    font-family: 'webfont3';
    font-size: 35px;

}

/* --- */

.mainserivespara p{
    font-family: 'webfont';
    
    margin: 0 auto; 
    text-align: center;
    margin-bottom: 2rem;
}
@media (max-width:768px){
    .mainserivespara p{
    
    width: 100% !important;
    margin: 0 auto; 
    text-align: center;
    margin-bottom: 2rem;
}
}

.servicecard-items:hover {
    background-color: #f0f0f0;
}

.servicecard-items:hover .service-icon-container img {
    filter: brightness(0) invert(1);
}
/* ==============  music page ============== */
#music1:hover {
    background: url(./assets/services/weddingband.jpg) center/cover no-repeat;
    color: white;
  }
#music2fest:hover {
    background: url(./assets/services/festivel1.jpg) center/cover no-repeat;
    color: white;
}
#music3party:hover{
    background: url(./assets/services/musicband.png);
    color: white;
}
#music4band:hover{
    background: url(./assets/services/music41.png);
    color: white;
}
/*============== live concert page ================ */

#live1AB:hover {
    background: url(./assets/services/weddingband.jpg) center/cover no-repeat;
    color: white;
  }
  #live2venue:hover{
    background: url(./assets/services/venues.png) center/cover no-repeat;
    color: white;
  }
  #live3stage:hover{
    background: url(./assets/services/stage.png) center/cover no-repeat;
    color: white;
  }
  #live4market:hover{
    background: url(./assets/services/marketing.png) center/cover no-repeat;
    color: white;
  }
  /* ============ strategic pr celebrity ========== */
  #pr1strategic:hover{
    background: url(./assets/services/stratgcpr.png) center/cover no-repeat;
    color: white;
  }
  #pr2media:hover{
    background: url(./assets/services/mediarelation.png) center/cover no-repeat;
    color: white;
  }
  #pr3crisis:hover{
    background: url(./assets/services/prcrisis.png) center/cover no-repeat;
    color: white;
  }
  #pr4social:hover{
    background: url(./assets/services/prsocial.png) center/cover no-repeat;
    color: white;
  }

  /* =========== event planning page ================= */
  #event1event:hover{
    background: url(./assets/services/eventevent.png) center/cover no-repeat;
    color: white;
  }
  #event2venue:hover{
    background: url(./assets/services/eventvenue.png) center/cover no-repeat;
    color: white;
  }
  #event3design:hover{
    background: url(./assets/services/eventdesign.png) center/cover no-repeat;
    color: white;
  }
  #event4design:hover{
    background: url(./assets/services/eventmarket.png) center/cover no-repeat;
    color: white;
  }

  /* =============== rental page ==================== */
  #rental1audio:hover{
    background: url(./assets/services/chariot-madurai-7.jpg) center/cover no-repeat;
    color: white;
  }
  #rental2light:hover{
    background: url(./assets/services/girlpallak.jpg) center/cover no-repeat;
    color: white;
  }
  #rental3fur:hover{
    background: url(./assets/services/rentalfur.png) center/cover no-repeat;
    color: white;
  }
  #rental4decor:hover{
    background: url(./assets/services/rentaldecor.png) center/cover no-repeat;
    color: white;
  }
  /* ====================================================== */
  .text-center{
    font-size: 40px;
    font-family: 'webfont';
  }
  .form-label{
    font-family: sans-serif;
    font-weight: 700;    
  }
  /* ========================================= */
  @keyframes zoomToPosition {
    from {
        transform: scale(0.8) translateY(20px); /* Initial scaled down and offset position */
        opacity: 0; /* Start as invisible */
    }
    to {
        transform: scale(1) translateY(0); /* End at original size and position */
        opacity: 1; /* End as fully visible */
    }
}

/* Apply animation to the image */
.image-container img {
    width: 100%; /* Adjust to fit container */
    height: auto; /* Maintain aspect ratio */
    transform: scale(0.8) translateY(20px); /* Initial state */
    opacity: 0; /* Initially hidden */
    animation: zoomToPosition 3s ease-out forwards; /* Apply animation */
}
.aboutcntnt h2{
  font-size: 40px;
}




.newfoot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8; /* You can change the background color */
  }
  
  .footer-content {
    text-align: center;
    width: 100%;
  }
  
  .footer-line {
    width: 80%;
    height: 2px; /* Adjust the thickness of the line */
    background-color: #000; /* You can change the color of the line */
    margin: 0 auto 10px auto; /* Center the line and add some space below it */
  }
  
  .newfoot {
    margin: 0;
    font-size: 14px; /* Adjust the font size if needed */
    color: #333; /* You can change the text color */
  }



  #more-2, #more-3, #more-4 {
    display: none; /* Initially hide the extra content */
}

.card-body-review button{
  border: none;
  background: white;
}
.card-body-review button:hover{
  color:blue
}