@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    scroll-behavior: smooth;
    
}

:root{
    --primary: rgb(79, 40, 93);
    --secondary: #f9a698;
    --tertiary: #fff;
}

body{
    margin: 0%;
    padding: 0%;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory; /* Enable vertical scroll snapping */
    transition: all 0.3s ease-in-out;
}
ul{
    margin: 0%;
    padding: 0%;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/*Paragraph text overall*/

p{
    font-weight: 500;
    font-size: 18px;

}

/*Links overall and buttons*/
a{
    cursor: pointer;
}

button{
    cursor: pointer;
}

img{
     transition: all 0.3s ease-in-out;
}

/*The only different section*/
.about-section .top, .bottom{
    padding-right: 5%;
    padding-left: 5%;
    margin:0;
}
section{
    height: 100%; /* 100% of the viewport height */
    scroll-snap-align: start;
    transition: all 0.3s ease-in-out;
}
section:nth-child(odd){
    background-color: var(--primary);
    color: var(--secondary);
   
}
section:nth-child(even){
    background-color: var(--secondary);
    color: var(--primary);
    
}
img{
    width: 100%;
    height: auto;
    
}
.btn-3d{
    position: relative;
    padding:10px 20px;
    background-color: var(--tertiary);
    color: var(--primary);
    border: none;
    cursor: pointer;
}
.btn-3d:before{
    content: "";
    position:absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #005599;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
.btn-3d:hover:before{
    transform: translateY(0%);
}


/*      Hero Section        */
.hero-section .hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 1rem;
}
.hero-section .hero-content h3{
    color: var(--tertiary);
    font-size: medium;
}
.hero-section .hero-content h1{
    color: var(--secondary);
}
.hero-content p{
    font-weight: 500;
    
  }
.color{
    color: var(--tertiary);
}
.hero-button .cta{
    background-color: var(--tertiary);
    color: var(--primary);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bolder;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}
.hero-button .cta-info{
    background-color: transparent;
    color: var(--tertiary);
    border: 2px solid var(--tertiary);
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bolder;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    
}
.hero-images{
    /*background: url('.././media/logo/closer tune agency setup.png');
    */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    background-color: var(--secondary);
    border-radius: 3%;
    padding: 1rem;
}
.hero-image {
    /*mix-blend-mode: luminosity;*/
    width: calc(100% - 5%);
    height: auto;
}

.hero-button a{
    text-decoration: none !important;
}
.hero-link-info{
    text-decoration: underline;
    color: var(--tertiary);
    margin-top: 0.6rem;
}
.hero-link-info .fa-solid{
    text-decoration: none;
    color: yellow;
    margin-left: 0.3rem;
}



/*      About Us        */
.about-info div{
    padding: 2%;
    border-radius: 5px;
}
.about-info div:nth-child(2){
    background-color: var(--tertiary);
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.linker-to-funnel{
    padding: 0% !important;
}
.about-info div a {
    text-decoration: none;
    color: var(--primary);
    background-color: var(--secondary);
    border-radius: 1.5rem;
    padding: 0.6rem 1.2rem ;
    margin-top: 1.8rem;
    border: 2px solid var(--primary);
}


.about-card{
    background-color: var(--tertiary);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin:0em 0.5rem 0rem 0rem;
}
.about-card-img{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    object-fit: fill;
}
.about-card-img img{
    border-radius: 5px;
}
.div2{
    flex: 1;
}
.marquee{
    background-color: var(--tertiary);
    font-weight: 700;
    
    display: grid;
    place-items: center;
}


/*Scroll Bar*/
/* Customize scrollbar */
/* Customize scrollbar for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 5px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #982a2a;
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #cc3e3e;
  }
  
  ::-webkit-scrollbar-track {
    background-color:var(--secondary);
  }
  
  /* Customize scrollbar for Firefox */
  /* Set the color of the scrollbar thumb */
  /*scrollbar-color: #ff6b6b #f1f1f1;
  /* Set the width of the scrollbar */
  /*scrollbar-width: thin;
  ground-color: #f1f1f1; /* Set the color of the scrollbar track */
  

/*      Services        */
.services{
    display: flex;
    flex-direction: column;
    padding: 8% 0%;
}

.service-card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 2px solid var(--secondary);
    color: var(--primary);
    background-color: var(--secondary);
    border-radius: 5px;
}
.service-img{
    padding:0rem 1rem;
    margin-top: 3rem;
}
.service-img .fa-solid{
    height: auto;
    width: 100%;
    font-size: 5rem;
    color: var(--tertiary);
    margin: 0.8rem 0rem;
}
.service-info{
    padding:0.5rem 1rem;
}
.service-info ul li{
    font-size: 18px;
    font-weight: 500;
    
}

.service-card:hover{
    background-color: var(--secondary);
    
}


.service-card li{
    list-style: none;
}

/*service stack marquee*/
.stack{
    /*-webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0), white);
}*/

}
.stack marquee .fa-brands{
    margin: 2rem 2rem;
}


/*      Projects Section       */
.projects{
    padding:3rem;
}
.overflow-container{
    /*height: 400px; /* Set the specific height for the container */
    overflow: auto; /* Enable vertical and horizontal scrolling when content exceeds the container height */
     /* Optional: Add a border for visual clarity */
}
.project-card{
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    background-color: var(--tertiary);
    color: var(--primary);
}
.project-card .project-details{
    display: flex;
    flex-direction: column;
    margin:1rem 0rem;
}

.project-info h3, p {
    margin: 0;
}
.project-info p{
    font-size: 0.8rem;
    font-weight: 500;
}
.project-card .project-view{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    margin-top:5%;
}
.project-view a{
    text-decoration: underline;
    text-underline-offset: 4px;
}
.portfolio-topper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.portfolio-topper a{
    padding: 0.8rem;
    background-color: var(--primary);
    color: var(--tertiary);
}


/**  Testimonial Slides */
.review-topper{
    margin-top: 0.8rem;
    padding: 0% 5%;
    float: left;
}
.testimonial-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
}

.navigation-dots {
    position: relative;
    bottom:12px;
    left: 92%;
    transform: translateX(-50%);
    display: flex;
}
.dot {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: sandybrown;
    cursor: pointer;
}
.dot .active {
    background-color: black;
}
.testimonial-card {
    text-align: left;
}

.testimonial-img{
    height:20vh;
    width:20vh;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.testimonial-img img{
    height:19vh;
    width:19vh;  
}



/*      Blog Section        */
.link-blogs {
    padding: 2px;
    text-decoration: none;
    margin-top: 2%;
    background-color: var(--tertiary);
}
.blog{
    text-align: left;
    padding:3%;
    margin: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.blog .quote-img {
    padding: 5% 2%;

}
.blog .quote-img i{
    font-size: 10rem;
    color: var(--secondary);
}
.blog-quote{
    padding: 5% 2%;
}

.small{
    font-size: 18px;
}
.blog .team{
    margin: 3rem 0rem;
}
.card-info h3 {
    margin: 0; /* Removes default margin */
    font-size: 18px; /* Set font size */
}

.card-info p {
    margin: 5px 0 0; /* Margin to separate the title and the job position */
    font-size: 14px; /* Set font size */
}
.blog .team .info .crumb{
    font-weight: 500;
    color: var(--primary);
    background-color: var(--tertiary);
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 22px;
}

.blog .team button{
    
    background-color: var(--tertiary);
    color: var(--primary);
    border: none;
    border-radius: 25px;
    padding: 13px 35px;
    font-weight: bolder;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    gap: 0.6rem;
    margin: 2rem 0rem;
}
.blog .team .images{
    padding: 1%;
}
.blog .team .images img{
    background-position: center;
    background-size: cover;

}

.team-card {
    position: relative;
    overflow: hidden; /* Ensures no overflow of content outside the container */
}
.card-info {
    border-radius: 8px;
    position: absolute;
    bottom: 10px; /* Position it at the bottom of the container */
    left: 0; /* Align it to the left */
    width: 100%; /* Stretch across the entire container width */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white; /* Text color */
    padding: 10px; /* Padding inside the info box */
     /* Includes padding in width calculation */
}
  

/*   Contact Us Section */
/* contact*/
.contact{
    padding:3rem;
}
.contact-header{
    text-transform: uppercase;
}
.contact-header h1{
    font-weight: 900;
}
.contact-header p{
    font-weight: 700;
    letter-spacing: 1px;
    margin: 2rem 0rem;
}
.forms{
    display: flex;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary);
    padding-bottom:4% ;
}
.forms legend{
    font-weight: bolder;
    margin-bottom: 0.4rem;
    color:var(--tertiary);
}
.forms label{
    color: var(--tertiary);
}
.form-group{
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-between;
    
}
.form-group input[type="text"], input[type="email"]{
    border: none;
    background-color: hsl(285, 35%, 31%);
    border-bottom: 3px solid var(--secondary);
    height: 1.8rem;
    width:100%;
    font-size: 1rem;
}
.form-group{
    text-align:left;
}
input{
    outline: none;
    color: var(--tertiary);
    font-size: large;
}
.form-btn button{
    background-color: var(--tertiary);
    color: var(--primary);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: bolder;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    gap: 0.6rem;
    margin: 0.8rem 0rem;
    float: right;
}


/*    footer    */
footer{
    background-color:#3f0157;
    color: var(--secondary);
    padding-right: 5%;
    padding-left: 5%;
    margin:0;
}

footer a{
    color: var(--tertiary);
}
footer ul li{
    list-style: none;
    padding: 1% 0%;
}
footer .second a{
    border-bottom: 2px solid var(--tertiary);
}
footer ul li a{
    text-decoration: none;
    
}
.footer-container{
    padding-bottom: 2%;
}
.footer-info{
    border-top: 1.5px solid var(--secondary);
    padding: 2% 0%;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-info a{
    text-decoration: none;
    border-bottom: 1px solid var(--tertiary);
}
.first img{
    margin: 1rem 0rem;
}
.third .grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}