@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* This stops the horizontal moving/scrolling */
    position: relative;
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all .2s linear;
    text-decoration: none;
}

html{
    font-size: 62.5%;
}

body{
    overflow-x: hidden;
}

.heading, .clients .section-header h2, .section-head h1, .testimonials .section-header h2, .section-head-1 h4{
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #4c064c;
    position: relative;
    letter-spacing: .2rem;
}

.heading::before, .heading::after, .clients .section-header h2::before, .clients .section-header h2::after, .section-head h1::before, .section-head h1::after, .testimonials .section-header h2::before, .testimonials .section-header h2::after, .section-head-1 h4::before, .section-head-1 h4::after{
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: .4rem solid #4c064c;
    border-left: .4rem solid #4c064c;
}

.faq .heading::before, .faq .heading::after{
    border-top: .4rem solid #4c064c;
    border-left: .4rem solid #4c064c;
}

.heading::before, .clients .section-header h2::before, .section-head h1::before, .testimonials .section-header h2::before, .section-head-1 h4::before{
    top: 5.8rem;
    left: -2rem;
}

.heading::after, .clients .section-header h2::after, .section-head h1::after, .testimonials .section-header h2::after, .section-head-1 h4::after{
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

.row .btn{
    outline: none;
    border: none;
    border-radius: 5rem;
    background: #4c064c;
    border-style: groove;
    border-color: #4c064c;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.communicate .btn{
    outline: none;
    border: none;
    border-radius: 5rem;
    background: white;
    border-style: groove;
    border-color: #4c064c;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.row .btn:hover{
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #aaafb4;
}

.communicate .btn:hover{
    letter-spacing: .1rem;
    opacity: .9;
    color: #4c064c;
    background: #4c064c;
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* REDUCED vertical padding from 1rem to 0.4rem */
    padding: 0.4rem 2rem; 
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease; /* Makes the transition smooth */
}
.header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Stops the logo from being squashed to 0 width */
    min-width: 100px; /* Gives it a guaranteed space */
}

.header .logo img {
    /* Use 'px' to ensure it stays a visible size on all screens */
    height: 120px !important; 
    width: auto !important;
    display: block !important;
    
    /* This ensures the image isn't hidden by accidental overflows */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Specific Mobile Fix */
@media (max-width: 768px) {
    .header .logo img {
        height: 60px !important; /* Slightly smaller but still visible */
        position: relative;
        z-index: 1001; /* Keeps it above the navbar background */
    }
    
    /* If your logo is white, we need to make sure the header 
       on mobile isn't also white at the same time */
    .header {
        background-color: #222; /* Temporary dark color to test if logo appears */
    }
}

.header .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
  
}

.header .navbar ul li{
    margin: 0 1.5rem;
}

.header .navbar ul li a {
    /* SLIGHTLY reduced font size to keep the bar compact */
    font-size: 2.6rem; 
    color: #000000;
}

.header .navbar ul li a:hover{
    color: #4c064c;
    text-decoration: underline;
}

.header .logo i{
    padding: 0.5rem;
}

.header .fa-bars{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

.home{
    min-height: 100vh;
    width: 100vw;
    background-image: url(../images/agroupz\ banner\ 2.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

.home h1{
    color: #fff;
    font-size: 5.5rem;
}

.home h2{
    color: #fff;
    font-size: 3rem;
}

.home .wave{
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    
    background: url(../images/wave.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}

.home .wave2{
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: .3;
   
}

.home .wave3{
    animation-duration: 4s;
    opacity: .5;
 
}

@keyframes waves{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 100rem;
    }
}
/* Media Query for Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .home {
        /* Use a vertical version of your banner here */
        background-image: url(../images/agroup\ banner\ mobile.jpg); 
        background-size: cover;
        min-height: 75vh;
    }
}/* Media Query for Mobile (Tablets and Phones) */
@media (max-width: 768px) {
    .home {
        background-position: top center;
        justify-content: flex-start; 
        padding-top: 10rem; /* Adjusted to balance the top space */
    }

    .home h1 {
        /* Pushes it down from the top navbar */
        margin-top: 5rem !important; 
        position: static;
        
        /* Font Styles */
        font-size: 3.8rem !important; /* Large and readable on mobile */
        font-weight: 700 !important;   /* Makes it Bold */
        line-height: 1.1;
        padding: 0 1.5rem;
        color: #4c064c;
        text-transform: none; /* Keeps casing natural if preferred */
    }

    .home h2 {
        /* Kept at 1.6rem as per your previous setup */
        font-size: 1.6rem !important; 
        font-weight: 400; /* Normal weight to contrast with bold H1 */
        margin-top: 1.5rem !important;
        padding: 0 2rem;
        line-height: 1.4;
        color: #4c064c;
    }
}

/* Specific fix for very small phones */
@media (max-width: 480px) {
    .home h1 {
        font-size: 2.4rem !important;
    }
    .home {
        padding-top: 10rem;
    }
}

.about{
    min-height: 55vh;
    width: 100vw;
    top: -3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 10rem;
}

.about .row{
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
}

.about .row .content{
    text-align: center;
}

.about .row .content h3{
    font-size: 3rem;
    color: black;
}

.about .row .content p{
    font-size: 2rem;
    color: #4c064c;
    padding: 1rem 0;
}
/* Styling for the words only */
.about .content h3 {
    display: inline-flex; /* Wraps only the words */
    align-items: center;
    padding: 8px 22px;
    margin-top: 35px;
    margin-bottom: 18px;
    
    /* Elegant Colors */
    color: #4c064c;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(76, 6, 76, 0.15);
    border-radius: 50px; /* Perfect pill shape */
    
    /* Premium Shadow */
    box-shadow: 0 4px 12px rgba(76, 6, 76, 0.08);
    transition: all 0.3s ease;
}

/* Subtle dot for an extra touch of design */
.about .content h3::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #4c064c;
    border-radius: 50%;
    margin-left: 12px;
}

/* Hover effect for a touch of interactivity */
.about .content h3:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 6, 76, 0.15);
    background: #fff;
    border-color: #4c064c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about .content h3 {
        font-size: 1.2rem;
        padding: 6px 18px;
        margin-top: 25px;
    }
}
.pt-5 .container .row .section-head p{
    font-size: 2rem;
    color: #4c064c;
    padding: 1rem 0;
}
  .section-head{
    margin-bottom: 60px;
    text-align: center;
    margin-top: -8rem;
  }
  .section-head p{
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  .item{
    background:#fff;
    text-align: center;
    padding:30px 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    margin-top: -2rem;
    border:5px solid rgba(0,0,0,0.07);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover{
    background:#c8d8e4;
    box-shadow: 0 8px 20px 0 rgba(0,0,0,0.2);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover .item,
  .item:hover span.icon{
    background:#4c064c;
    border-radius: 10px;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item h6{
      font-size: 2rem;
  }
  .item:hover h6,
  .item:hover p{
    color:#4c064c;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .icon{
    font-size:40px;
    margin-bottom: 25px;
    color:#4c064c;
    width:90px;
    height:90px;
    line-height: 96px;
    border-radius: 50px;
  }
  .item .feature_box_col_one{
    background:rgba(247,198,5,0.2);
    color:#4c064c;
  }
  .item .feature_box_col_two{
    background: rgba(255, 77, 28, 0.15);
    color:#52ab98;
  }
  .item .feature_box_col_three{
    background:rgba(0,147,38,0.15);
    color:#4c064c;
  }
  .item .feature_box_col_four{
    background:rgba(0,108,255,0.15);
    color:#4c064c;
  }
  .item .feature_box_col_five{
    background:rgba(146,39,255,0.15);
    color:#4c064c;
  }
  .item .feature_box_col_six{
    background:rgba(23,39,246,0.15);
    color:#4c064c;
  }
  .item p{
    font-size: 15px;
    line-height: 26px;
  }
  .item h6{
    margin-bottom: 20px;
    color:#4c064c;
  }   

.counters {
	background-image: url(../images/img2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
	color: #fff;
	padding: 40px 20px;
  
}

.counters .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
	text-align: center;

}

.counters i {
	color: #fff;
	margin-bottom: 5px;
}

.counters .counter {
	font-size: 45px;
	margin: 10px 0;
}

@media (max-width: 700px) {
	.counters .container {
		grid-template-columns: repeat(2, 1fr);
	}

	.counters .container > div:nth-of-type(1),
	.counters .container > div:nth-of-type(2) {
		border-bottom: 1px #4c064c;
		padding-bottom: 20px;
	}
}

.section-head-1{
    margin-bottom: 60px;
    background-size: 200%;
    background-position: left;

  }
  .section-head-1 p{
    color:#4c064c;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  .item{
    background:#fff;
    text-align: center;
    padding:50px 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.07);
    border-radius: 20px;
    margin-bottom: 50px;
    border: 1px solid rgba(0,0,0,0.07);
    -webkit-transition:all 0.7s ease 0s;
    transition:all 0.7 ease 0s;
    height: 450px;
    
  }
  .item:hover{
    background-image: linear-gradient(to bottom right, #ffffff 0%, #4c064c 100%);
    background-position: right;
    transition: background-position 3s;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.7s ease 0s;
  }
  .item:hover .item,
  .item:hover span.icon{
    background:#fff;
    border-radius: 10px;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover h1,
  .item:hover p{
    color:#ffffff;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .icon{
    font-size:40px;
    margin-bottom: 25px;
    color:#4c064c;
    width:90px;
    height:90px;
    line-height: 96px;
    border-radius: 50px;
  }
  .item .feature_box_col_one{
    background:rgba(247,198,5,0.2);
    color:#4c064c;
  }
  .item .feature_box_col_two{
    background: rgba(255, 77, 28, 0.15);
    color:#4c064c;
    
  }
  .item .feature_box_col_three{
    background:rgba(0,147,38,0.15);
    color:#4c064c;
  }
  .item .feature_box_col_four{
    background:rgba(0,108,255,0.15);
    color:#4c064c;
    
  }
  .item .feature_box_col_five{
    background:rgba(146,39,255,0.15);
    color:#4c064c;
  }
  .item .feature_box_col_six{
    background:rgba(23,39,246,0.15);
    color:#4c064c;
  }
  .item p{
    font-size: 15px;
    font-family: "Varela Round",Arial,"Helvetica Neue",Helvetica,sans-serif;
    line-height: 26px;
  }
  .item h1{
    margin-bottom: 20px;
    font-family: "Varela Round",Arial,"Helvetica Neue",Helvetica,sans-serif;
    color:#4c064c;
  }
  /* --- 1. Main Card Container --- */
.portfolio-card {
    padding: 0 !important;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 90%;
    border: 1px solid rgba(0,0,0,0.05);
}

/* --- 2. The Auto-Slideshow Logic --- */
.meta-slideshow {
    width: 100%;
    height: 250px;
    background: #4c064c; /* Brand Purple */
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: 400%; /* Space for 4 images (3 original + 1 loop) */
    height: 100%;
    /* 15 seconds total: 5s per image x 3 images */
    animation: autoSlide 15s infinite ease-in-out;
}

.slide-track img {
    width: 25%; /* Each image takes up 1/4 of the 400% track */
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

/* --- 3. The Animation Keyframes --- */
@keyframes autoSlide {
    0%, 30% { transform: translateX(0); }             /* Show Image 1 */
    33%, 63% { transform: translateX(-25%); }         /* Show Image 2 */
    66%, 96% { transform: translateX(-50%); }         /* Show Image 3 */
    100% { transform: translateX(-75%); }            /* Move to Loop Image */
}

/* --- 4. Content & Floating Icon --- */
.item-content {
    padding: 40px 20px 25px;
    text-align: center;
    position: relative;
}

.icon-floating {
    width: 55px;
    height: 55px;
    background: #fff;
    color: #4c064c;
    border: 3px solid #4c064c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: absolute;
    top: -28px; /* Centers icon on the edge of the purple area */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- 5. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .meta-slideshow {
        height: 190px; /* Slimmer for phones */
    }
    
    .slide-track img {
        height: 190px;
        padding: 10px;
    }

    .item-content h1 {
        font-size: 1.4rem;
    }

    .item-content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .icon-floating {
        width: 48px;
        height: 48px;
        font-size: 18px;
        top: -24px;
    }
}
/* The background overlay */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999; /* Higher than navbar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9); /* Dark background */
    backdrop-filter: blur(5px); /* Blurs the background site */
    justify-content: center;
    align-items: center;
}

/* The actual enlarged image */
.modal-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

/* When the modal is active, scale up the image */
.modal-overlay.active .modal-content {
    transform: scale(1);
}

/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.slide-track-8 {
    display: flex;
    width: 900%; /* 9 videos total */
    height: 100%;
    animation: autoSlide8 40s infinite ease-in-out;
}

.slide-track-8 video {
    width: 11.11%; /* 100 divided by 9 images */
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

/* 8-Video Animation Logic (5 seconds each) */
@keyframes autoSlide8 {
    0%, 10% { transform: translateX(0); }             /* Vid 1 */
    12.5%, 22.5% { transform: translateX(-11.11%); }   /* Vid 2 */
    25%, 35% { transform: translateX(-22.22%); }      /* Vid 3 */
    37.5%, 47.5% { transform: translateX(-33.33%); }   /* Vid 4 */
    50%, 60% { transform: translateX(-44.44%); }      /* Vid 5 */
    62.5%, 72.5% { transform: translateX(-55.55%); }   /* Vid 6 */
    75%, 85% { transform: translateX(-66.66%); }      /* Vid 7 */
    87.5%, 97.5% { transform: translateX(-77.77%); }   /* Vid 8 */
    100% { transform: translateX(-88.88%); }           /* Loop back */
}
@media (max-width: 768px) {
    /* ... your other mobile code ... */

    .item-content h1 {
        font-size: 1.4rem;
        margin-top: 10px;
        
        /* ADD THESE TWO LINES */
        font-weight: 800 !important;   /* This makes it extra bold */
        text-transform: uppercase;    /* Optional: making it all caps often looks stronger */
        letter-spacing: 0.5px;        /* Helps readability on small screens */
    }
}
/* --- 1. DESKTOP SETTINGS --- */
.logo-track {
    display: flex;
    width: 600%; /* Space for 6 images (5 logos + 1 loop) */
    height: 100%;
    animation: logoSlide 30s infinite ease-in-out; /* 4 seconds per logo */
}

.logo-track img {
    width: 16.66%; /* Exactly 1/6th of the track width */
    flex: 0 0 16.66%;
    height: 100%;
    object-fit: contain;
    padding: 25px; /* Nice breathing room for logos */
    cursor: zoom-in;
}

/* Unique Animation for Logo Design */
@keyframes logoSlide {
    0%, 15% { transform: translateX(0); }               /* Logo 1 */
    16.6%, 31.6% { transform: translateX(-16.66%); }    /* Logo 2 */
    33.3%, 48.3% { transform: translateX(-33.33%); }    /* Logo 3 */
    50%, 65% { transform: translateX(-50%); }           /* Logo 4 */
    66.6%, 81.6% { transform: translateX(-66.66%); }    /* Logo 5 */
    83.3%, 98% { transform: translateX(-83.33%); }      /* Logo 6 (Loop) */
    100% { transform: translateX(-83.33%); } 
}

/* --- 2. MOBILE & TABLET SETTINGS --- */
@media (max-width: 768px) {
    /* Make the logo container slightly shorter on mobile */
    .meta-slideshow {
        height: 200px !important;
    }

    .logo-track img {
        padding: 15px; /* Slightly less padding on small screens */
    }

    /* FIXING THE BOLD FONT PROBLEM */
    .item-content h1 {
        font-size: 1.5rem !important;
        font-weight: 900 !important; /* Forces the strongest bold possible */
        color: #4c064c;                /* Ensure it's dark enough to look thick */
        margin-top: 15px;
        text-align: center;
        letter-spacing: -0.5px;      /* Tighter letters look bolder */
    }

    .item-content p {
        font-size: 14px;
        line-height: 1.6;
        font-weight: 500;           /* Makes the paragraph readable but not too thick */
    }
}
/* --- Graphic Design Specific CSS --- */

.design-track {
    display: flex;
    width: 1800%; /* 18 images * 100% */
    height: 100%;
    /* 18 images * 5 seconds = 90 seconds */
    animation: designSlide 90s infinite ease-in-out;
}

.design-track img {
    width: 5.555%; /* 100 / 18 */
    flex: 0 0 5.555%;
    height: 100%;
    object-fit: cover; /* Posters look better filled in the box */
    padding: 5px; /* Less padding so posters look bigger */
}

/* Keyframe for 18 steps (17 images + 1 loop) */
@keyframes designSlide {
    0%, 5.2% { transform: translateX(0); }
    5.5%, 10.7% { transform: translateX(-5.555%); }
    11.1%, 16.3% { transform: translateX(-11.111%); }
    16.6%, 21.8% { transform: translateX(-16.666%); }
    22.2%, 27.4% { transform: translateX(-22.222%); }
    27.7%, 32.9% { transform: translateX(-27.777%); }
    33.3%, 38.5% { transform: translateX(-33.333%); }
    38.8%, 44.0% { transform: translateX(-38.888%); }
    44.4%, 49.6% { transform: translateX(-44.444%); }
    50.0%, 55.2% { transform: translateX(-50.000%); }
    55.5%, 60.7% { transform: translateX(-55.555%); }
    61.1%, 66.3% { transform: translateX(-61.111%); }
    66.6%, 71.8% { transform: translateX(-66.666%); }
    72.2%, 77.4% { transform: translateX(-72.222%); }
    77.7%, 82.9% { transform: translateX(-77.777%); }
    83.3%, 88.5% { transform: translateX(-83.333%); }
    88.8%, 94.0% { transform: translateX(-88.888%); }
    94.4%, 99.5% { transform: translateX(-94.444%); } /* Last original */
    100% { transform: translateX(-94.444%); } /* Reset point */
}

/* --- Mobile Fix for Bolder Font --- */
@media (max-width: 768px) {
    .item-content h1 {
        font-weight: 900 !important;
        font-size: 1.6rem !important;
        text-transform: uppercase;
        color: #4c064c;
        margin-top: 15px;
    }
}
.icon-floating {
    width: 65px;               /* Size of the circle */
    height: 65px;
    background: #ffffff !important; /* Forces the white background */
    border-radius: 50%;        /* Makes it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Position it on the line */
    position: absolute;
    top: -32px;                /* Half of the height to sit on the line */
    left: 50%;
    transform: translateX(-50%);
    
    /* Shadow makes it "pop" off the card */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); 
    z-index: 10;
}

/* This makes the actual icon (the palette) look big and colorful */
.icon-floating i {
    font-size: 24px;
    color: #4c064c; /* Use your brand purple or the specific feature_box color */
}
/* --- Web Development Horizontal Slider (Meta Leads Style) --- */
.web-horizontal-track {
    display: flex;
    width: 300%; /* Space for 3 images (1, 2, Loop) */
    height: 100%;
    animation: webHorizontalSlide 10s infinite ease-in-out;
}

.web-horizontal-track img {
    width: 33.33%; /* Each image takes 1/3 of the 300% width */
    flex: 0 0 33.33%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Keeps the website header visible */
    padding: 5px;
}

/* Horizontal Animation Logic */
@keyframes webHorizontalSlide {
    0%, 40% { transform: translateX(0); }             /* Site 1 stay */
    50%, 90% { transform: translateX(-33.33%); }      /* Site 2 stay */
    100% { transform: translateX(-66.66%); }          /* Reset Loop */
}

/* --- Buttons CSS --- */
.btn-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.view-project-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #4c064c;
    color: #fff !important;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.view-project-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

/* --- Mobile Responsive (Strong Bold Fix) --- */
@media (max-width: 768px) {
    .item-content h1 {
        font-weight: 900 !important; /* The Strong Bold you needed */
        font-size: 1.5rem !important;
        text-transform: uppercase;
        color: #4c064c !important;
        margin-top: 15px;
    }

    .view-project-btn {
        flex: 1 1 45%; /* Buttons side-by-side on mobile */
        text-align: center;
        font-size: 11px;
    }
}

  

.communicate{
    text-align: center;
    align-items: center;
    background-image: url(../images/Banner\ 2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 35vh;
    padding: 40px 20px;
}  

.communicate h3{
    margin-top: 3rem;
    font-size: 3rem;
}

.communicate p{
    font-size: 2rem;
}

/* --- Testimonials Section --- */
.testimonials {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

/* Added 'display: flex' and 'height: 100%' 
   This ensures that in a row or carousel, all items stretch to the tallest one.
*/
.testimonials .testimonial-item {
    position: relative;
    margin: 0 15px 30px 15px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px); /* Adjusting for the margin-bottom */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Optional: adds a professional touch */
}

.testimonials .testimonial-img {
    position: relative;
    /* 1. Define the size of your circle */
    width: 120px;  
    height: 120px;
    
    /* 2. Center it horizontally */
    margin: 20px auto; 
    
    /* 3. Make it a circle */
    border-radius: 50%;
    
    /* 4. Keep your existing properties */
    background: #000000;
    overflow: hidden;
    flex-shrink: 0;
    
    /* Optional: adds a nice border around the circle */
    border: 3px solid #4c064c; 
}

/* 5. Ensure the actual image fills the circle properly */
.testimonials .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Added 'flex-grow: 1' 
   This forces the text box to expand and fill any empty space.
*/
.testimonials .testimonial-text {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.testimonials .testimonial-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #4c064c; /* Your brand blue */
}

.testimonials .testimonial-text h4 {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: #4c064c; /* Your brand orange */
    margin-bottom: 15px;
}

.testimonials .testimonial-text p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    flex-grow: 1; /* This ensures the text area pushes the footer down */
}

/* --- Owl Carousel Support (Crucial for Equal Height) --- */
.testimonials .owl-stage {
    display: flex; /* Forces carousel items to respect equal height */
}

.testimonials .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dddddd;
    border: none;
}

.testimonials .owl-dot.active {
    background-color: #4c064c;
}

/* --- IMPORTANT MEDIA QUERY --- */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0 40px 0;
    }

    /* Stacks elements vertically and centers them */
    .testimonials .testimonial-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 50px !important; /* Spacing between each card */
    }

    /* Makes the image a circle and centers it */
    .testimonials .testimonial-img {
        width: 120px;
        height: 120px;
        margin-bottom: 25px; /* Gap between logo and paragraph */
        overflow: hidden;
        border-radius: 50%; /* This makes it a circle */
        border: 3px solid #4c064c; /* Optional: adds your brand color as a border */
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    .testimonials .testimonial-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover; /* Ensures the image fills the circle without stretching */
    }

    /* Paragraph styling for visibility */
    .testimonials .testimonial-text {
        padding: 0 15px;
        width: 100%;
    }

    .testimonials .testimonial-text p {
        font-size: 15px !important; /* Visible size for mobile */
        line-height: 1.6;
        color: #444;
        margin: 0 auto;
        max-width: 300px; /* Keeps text from getting too wide on tablets */
    }
}

/* Extra adjustment for very small screens */
@media (max-width: 575px) {
    .testimonials .testimonial-text p {
        font-size: 14px !important;
        padding: 0 10px;
    }
}

.clients {
    position: relative;
    padding: 90px 0;
    text-align: center;
    margin-top: -10rem;
    margin-bottom: -10rem;
}

.clients .section-header p {
    padding-bottom: 10px;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}

.clients img {
    max-width: 97%;
    opacity: 1;
    transition: 0.3s;
    padding: 20px 0;
}

.clients img:hover {
    opacity: .5;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: #4c064c;
}  
/* Container Spacing & Perspective */
.clients-carousel {
    padding: 40px 0;
    /* This creates the 3D depth environment */
    perspective: 1000px; 
}

/* Base style for the logo links */
.clients-carousel .owl-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy 3D transition */
}

/* The Image itself */
.clients-carousel .owl-item img {
    max-width: 140px;
    height: auto;
    display: block;
    filter: brightness(100%); 
    transition: all 0.4s ease;
    /* Ensures the shadow doesn't get clipped */
    transform-style: preserve-3d;
}

/* --- THE 3D & SHADOW HOVER EFFECT --- */
.clients-carousel .owl-item a:hover {
    /* 1. Lifts the logo high 
       2. Tilts it slightly upward (X-axis) 
       3. Rotates it slightly (Y-axis) for 3D feel */
    transform: translateY(-15px) rotateX(10deg) rotateY(-5deg);
}

.clients-carousel .owl-item a:hover img {
    /* 1. Powerful Multi-layered Drop Shadow for 3D depth
       2. Slight scale up to bring it closer to the user */
    filter: drop-shadow(0px 15px 5px rgba(0, 0, 0, 0.1)) 
            drop-shadow(0px 30px 20px rgba(0, 0, 0, 0.25));
    transform: scale(1.15);
}

/* Add a subtle glow behind the logo on hover (Optional) */
.clients-carousel .owl-item a:hover::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 20px;
    background: rgba(0,0,0,0.1);
    bottom: -10px;
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
    transition: all 0.4s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .clients-carousel .owl-item img {
        max-width: 90px;
    }
    .clients-carousel .owl-item a:hover {
        transform: translateY(-10px) rotateX(5deg); /* Less intense on mobile */
    }
} 

.team {
    width: 100%; /* Prevents horizontal scroll issues */
    padding: 100px 0; /* Creates height naturally based on content */
    text-align: center;
    background-color: #222; /* Your dark theme */
    overflow: hidden; /* Keeps everything tidy */
}

/* Container to keep content centered and not too wide on big screens */
.team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- MOBILE VIEW (768px and below) --- */
@media (max-width: 768px) {
    .team {
        padding: 60px 0; /* Reduces top/bottom space on mobile */
    }
    
    .team .container {
        padding: 0 15px; /* Slightly tighter padding for small screens */
    }
}

/* --- SMALL MOBILE (480px and below) --- */
@media (max-width: 480px) {
    .team {
        padding: 40px 0;
    }
}
.team .heading{
    color: #ddd;
}

.team .heading::before, .team .heading::after{
    border-color: #4c064c;
}

.team .row{
    display: inline-block;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.team .row .card{
    height: 42rem;
    width: 25rem;
    background-color: #fff;
    text-align: center;
    margin: 5rem 5rem;
    position: relative;
    overflow: hidden;
    -webkit-box-reflect: below 5px linear-gradient(transparent 70%, #0004);
    transition: 0.5s;
}

.team .row .card:hover{
    transform: translateY(-10px);
    cursor: pointer;
}


.team .row .card .image{
    margin: 1rem 0;
    padding-top: 4rem;
}

.team .row .card .image img{
    height: 17em;
    width: 17rem;
    border-radius: 60%;
    border: .5rem solid #4c064c;
    box-shadow: 0 0 .5rem rgba(0,0,0,.3);
    object-fit: cover;
}

.team .row .card .info h3{
    font-size: 2rem;
    color: #333;
}

.team .row .card .info span{
    font-size: 1.8rem;
    color: #4c064c;
}

.team .row .card .info .icons a{
    margin-top: 4rem;
    padding-top: 0 1rem;
    font-size: 2rem;
    color: #333;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.team .row .card .info .icons .fa-facebook-f:hover, .footer .icons .fa-facebook-f:hover{
    color: #4267B2;
    text-decoration: none;
}

.team .row .card .info .icons .fa-linkedin:hover, .footer .icons .fa-linkedin:hover{
    color: #1DA1F2;
    text-decoration: none;
}

.team .row .card .info .icons .fa-instagram:hover, .footer .icons .fa-instagram:hover{
    color: #C13584;
    text-decoration: none;
}

.team .row .card .info .icons .fa-phone:hover, .footer .icons .fa-phone:hover{
    color: #FF8C00;
    text-decoration: none;
}

.team .row .card::before, .team .row .card::after{
    content: '';
    position: absolute;
    border-radius: 50%;
    height: 13.5rem;
    width: 13.5rem;
    z-index: -1;
}

.team .row .card::before{
    background: #4c064c;
    top: -3rem;
    right: -4rem;
}

.team .row .card::after{
    background: #ccc;
    bottom: -3rem;
    left: -4rem;
}

.contact{
    text-align: center;
    align-items: center;
}

.contact .heading{
    margin-bottom: 5rem;
}

.contact-in
		{
			width: 80%;
			height: auto;
			margin: auto auto 5rem auto;
			display: flex;
			flex-wrap: wrap;
			padding: 10px;
			border-radius: 10px;
			background: #fff;
			box-shadow: 0px 0px 10px 0px #666;
		}

		.contact-map
		{
			width: 100%;
			height: auto;
			flex: 50%;
		}
		.contact-map iframe
		{
			width: 100%;
			height: 100%;
		}
		.contact-form
		{
			width: 100%;
			height: auto;
			flex: 50%;
			text-align: left;
		}
		.contact-form-txt
		{
            margin-left: 2rem;
			width: 95%;
			height: 40px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
        .contact-form-email
		{
            margin-left: 2rem;
			width: 95%;
			height: 40px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
		.contact-form-txt::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}
        .contact-form-email::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}
		.contact-form-txtarea
		{
            margin-left: 2rem;
			width: 95%;
			height: 130px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 10px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
			font-family: 'Poppins', sans-serif;
		}
		.contact-form-txtarea::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}

		.contact-form-btn
		{
            margin-left: 2rem;
            outline: none;
            border: none;
            border-radius: 5rem;
            background: white;
            border-style: groove;
            border-color: #4c064c;
            font-size: 1.5rem;
            cursor: pointer;
            height: 3.5rem;
            width: 15rem;
            box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
		}
        .contact-form-btn:hover{
            letter-spacing: .1rem;
            opacity: .9;
            color: white;
            background: #4c064c;
        }
		.contact-form-phone
		{
            margin-left: 2rem;
			width: 95%;
			height: 40px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
		.contact-form-phone::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}

        .footer {
            position: relative;
            padding: 0 0 30px 0;
            background: #333;
        }
        
        .footer .footer-top {
            background: #ffffff;
            padding: 60px 0 30px 0;
        }
        
        .footer .footer-top .footer-info,
        .footer .footer-top .footer-links,
        .footer .footer-top .footer-contact,
        .footer .footer-top .footer-newsletter {
            margin-bottom: 30px;
        }
        
        .footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #ffffff;
            color: #4c064c;
            line-height: 1;
            padding: 9px 0;
            margin-right: 4px;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }
        
        .footer .footer-top .social-links a:hover {
            background: #4c064c;
            color: #ffffff;
        }
        
        .footer .footer-top h4 {
            font-size: 16px;
            font-weight: 700;
            color: #4c064c;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .footer .footer-top h4::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            height: 0;
            width: 50px;
            border-bottom: 2px solid #4c064c;
        }
        
        .footer .footer-top .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer .footer-top .footer-links ul i {
            padding-right: 8px;
            color: #4c064c;
            font-size: 16px;
        }
        
        .footer .footer-top .footer-links ul li {
            border-bottom: 1px solid #4c064c;
            padding: 7px 0;
        }
        
        .footer .footer-top .footer-links ul li:first-child {
            padding-top: 0;
        }
        
        .footer .footer-top .footer-links ul a {
            font-size: 14px;
            color: #4c064c;
        }
        
        .footer .footer-top .footer-links ul a:hover {
            color: #4c064c;
        }
        
        .footer .footer-top .footer-contact p {
            color: #4c064c;
            line-height: 26px;
            text-decoration: none;
            
        }
        
        .footer .footer-top .footer-newsletter input[type="email"] {
            padding: 6px 8px;
            width: 60%;
            border: 1px solid #ffffff;
            background: transparent;
            color: #ffffff;
        }
        
        .footer .footer-top .footer-newsletter input[type="submit"] {
            border: 0;
            width: 40%;
            padding: 6px 0;
            text-align: center;
            color: black;
            border: 1px solid #ffffff;
            background: #ffffff;
            transition: 0.3s;
            cursor: pointer;
        }
        
        .footer .footer-top .footer-newsletter input[type="submit"]:hover {
            color: #ffffff;
            background: #00bfff;
            border: 1px solid #00bfff;
            letter-spacing: .2rem;
        }
        
        .footer .footer-top .footer-newsletter p {
            color: #4c064c;
            font-size: 14px;
        }
        
        .footer .credit,
        .footer .copyright {
            text-align: center;
            padding-top: 30px;
        }
        
        @media (min-width: 768px) {
            .footer .credit {
                text-align: right;
            }
            
            .footer .copyright {
                text-align: left;
            }
        }

        .back-to-top {
            position: fixed;
            display: none;
            background-color: #4c064c;
            color: #ffffff;
            width: 45px;
            height: 45px;
            text-align: center;
            line-height: 1;
            font-size: 44px;
            right: 15px;
            bottom: 15px;
            transition: background 0.3s;
            z-index: 9;
        }
        
        .back-to-top i {
            color: #ffffff;
        }

        .back-to-top i:hover {
            color: black;
        }

        .faq{
            min-height: 70vh;
            width: 100vw;
            text-align: center;
            padding: 0 2rem;
            background: url(../images/banner\ three.jpg);
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .faq .row{
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 2rem;
        }
        
        .faq .row .accordion-container{
            width: 50%;
            text-align: left;
        }

        .faq .row .accordion{
            margin-left: 1rem;
            margin-right: 2rem;
        }
        
        .faq .row .accordion-container .accordion .accordion-header{
            background-color: #fff;
            margin: 1rem 0;
            box-shadow: .1rem .1rem .3rem rgba(0,0,0,.3);
            cursor: pointer;
            margin-left: 1rem;
            margin-right: 2rem;
        }
        
        .faq .row .accordion-container .accordion .accordion-header span{
            display: inline-block;
            text-align: center;
            height: 4rem;
            width: 5rem;
            line-height: 4rem;
            font-size: 2rem;
            background: #333;
            color: #fff;
            clip-path: polygon(0% 0%,75% 0%,100% 50%,75% 100%,0% 100%); 
        }
        
        .faq .row .accordion-container .accordion .accordion-header h3{
            display: inline;
            color: #333;
            font-weight: 400;
            padding-left: .5rem;
            font-size: 1.5rem;
        }
        
        .faq .row .accordion-container .accordion .accordion-body{
            padding: 1rem;
            color: #444;
            box-shadow: .1rem .1rem .3rem rgba(0,0,0,.3);
            background-color: #fff;
            font-size: 1.3rem;
            display: none;
            margin-left: 1rem;
            margin-right: 2rem;
        }
        
@media (max-width: 1200px){
    .faq{
        min-height: 70vh;
    }
}        

@media (max-width: 1000px){
    html{
        font-size: 50%;
    }

    .header .logo img{
        width: 20%;
        height: 3rem;
        top: 0;
        left: 0;
        background-size: cover;
    }

    .header .fa-bars{
        display: block;
        color: 	#4c064c;
        margin-right: 1rem;
    }

    .header .fa-bars:hover{
        color: #00bfff;
    }

    .header .navbar{
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: white;
        z-index: 1000;
        border-top: .1rem solid rgba(0,0,0,.3);
    }

    .header .navbar ul{
        height: 100%;
        width: 100%;
        flex-flow: column;
    }

    .header .navbar ul li{
        margin: 1rem 0;
    }

    .header .navbar ul li a{
        color: grey;
        font-size: 2.4rem;
    }

    .header .fa-times{
        transform: rotate(90deg);
    }

    .header .nav-toggle{
        top: 5.8rem;
    }

    .home h1{
        color: #fff;
        font-size: 4rem;
    }
    
    .home h2{
        color: #fff;
        font-size: 2rem;
    }

    .about{
        min-height: 38vh;
        width: 100vw;
        margin-top: -3rem;
        margin-bottom: -2rem;
        top: -2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        line-height: 6rem;
    }
    
    .about .row{
        line-height: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 4rem;
    }
    
    .about .row .content{
        text-align: center;
    }
    
    .about .row .content h3{
        font-size: 2rem;
        color: var(--color);
    }
    
    .about .row .content p{
        font-size: 1.3rem;
        color: #333;
        padding: 1rem 0;
    } 

    .clients {
        position: relative;
        padding: 90px 0;
        text-align: center;
        margin-top: -15rem;
        margin-bottom: -8rem;
    }

    .clients .section-header p {
        padding-bottom: 10px;
        margin-top: 2.5rem;
        text-align: center;
        font-size: 2rem;
    }

    .team{
        min-height: auto;
    }

    .team .row{
        flex-direction: column;
    }

    .contact{
        text-align: center;
        align-items: center;
    }
    
    .contact .heading{
        margin-bottom: 3rem;
        margin-top: -2rem;
    }

    .contact-in
		{
			width: 80%;
			height: auto;
			margin: auto auto 5rem auto;
			display: flex;
			flex-wrap: wrap;
			padding: 10px;
			border-radius: 10px;
			background: #fff;
			box-shadow: 0px 0px 10px 0px #666;
		}

		.contact-map
		{
			width: 100%;
			height: auto;
			flex: 50%;
		}
		.contact-map iframe
		{
			width: 100%;
			height: 100%;
		}
		.contact-form
		{
			width: 100%;
			height: auto;
			flex: 50%;
			text-align: left;
		}
		.contact-form-txt
		{
			width: 90%;
			height: 20px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
        .contact-form-email
		{
            margin-left: 2rem;
			width: 90%;
			height: 20px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
		.contact-form-txt::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}
        .contact-form-email::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}
		.contact-form-txtarea
		{
            margin-left: 2rem;
			width: 90%;
			height: 110px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 10px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
			font-family: 'Poppins', sans-serif;
		}
		.contact-form-txtarea::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}

		.contact-form-btn
		{
            margin-left: 2rem;
            outline: none;
            border: none;
            border-radius: 5rem;
            background: white;
            border-style: groove;
            border-color: #002e5f;
            font-size: 1.5rem;
            cursor: pointer;
            height: 3.5rem;
            width: 12rem;
            box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
		}
        .contact-form-btn:hover{
            letter-spacing: .1rem;
            opacity: .9;
            color: white;
            background: #002e5f;
        }
		.contact-form-phone
		{
            margin-left: 2rem;
			width: 90%;
			height: 20px;
			color: #000;
			border: 1px solid #bcbcbc;
			border-radius: 50px;
			outline: none;
			margin-bottom: 20px;
			padding: 15px;
		}
		.contact-form-phone::placeholder
		{
			color: #aaa;
            font-size: 1.5rem;
		}

        .back-to-top {
            width: 30px;
            height: 30px;
            font-size: 30px;
        }

        .faq{
            padding: 0;
            min-height: 60vh;
        }
    
        .faq .row{
            padding: 0 1.5rem;
            flex-flow: column;
        }
    
        .faq .row .accordion-container{
            width: 100%;
        }
}

