* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    background: linear-gradient(90deg, #bfa046, #FFD700);
    color: white;
    padding: 4rem 2rem;
    /* margin: 5rem 0; */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    counter-reset: number;
    animation: countUp 2s ease-out;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonials {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

.contact-section {
    background: #333;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: linear-gradient(90deg, #bfa046, #FFD700);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}


.contact-section h2 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.contact-section p {
    font-weight: 700;
}

.form-group label {
    font-weight: 800;
}

.hero-section {
    width: 120%;

}
.hero-content{
    margin-left: -10%;
}

/* 📱 Mobile override */
@media screen and (max-width: 768px) {
  .hero-section {
    width: 100% !important; /* Reset to full width */
  }

  .hero-content {
    margin-left: 0% !important; /* Reset to normal position */
  }
}


/* 14. testimonial */

.testimonial-area .container{
    z-index: 1;
    position: relative;
}
.testimonial-area .test-bg {
    position: absolute;
    top: 0;
    left: -27px;
}
.testimonial-active2 {
    width: 95%;
    margin: auto;
}
.testimonial-area h2,.testimonial-area p{
	
}
.ta-bg {
	height: 475px;
	width: 475px;
	background-repeat: no-repeat;
	margin-top: 25px;
}
.testimonial-author .ta {
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    transition: all 1200ms ease;
    -moz-transition: all 1200ms ease;
    -webkit-transition: all 1200ms ease;
    -ms-transition: all 1200ms ease;
    -o-transition: all 1200ms ease;
}
.author-one.now-in-view {
	top: -25px;
	left: 110px;
}
.author-two.now-in-view {
	top: 21%;
	left: 69%;
}
.author-three.now-in-view {
	left: 67%;
	top: 66%;
}
.author-four.now-in-view {
	top: 77%;
	left: 53px;
}
.author-five.now-in-view {
	left: 50px;
	top: 41%;
}

.ta-info {
	overflow: hidden;
	display: block;
}
.ta-info h6 {
	font-size: 20px;
	margin-bottom: 5px;
	color:#fff;
}
.ta-info span {
	color:#fff;
	font-size: 16px;
}
.testi-author {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
}
.testi-author img{
    display: inline-block;
}
.single-testimonial p {
	margin-bottom: 0;
}
.testimonial-active .slick-arrow {
	position: absolute;
	bottom: -80px;
	left: 0;
	border: none;
	background: none;
	padding: 0;
	font-size: 24px;
	color: #fff;
	z-index: 9;
	cursor: pointer;
	transition: .3s;
	width: 94%;
}
.testimonial-active i {
    font-size: 30px;
    color:#fff;
    margin-bottom: 30px;
}
.testimonial-active .slick-next {
	left: 40px;
}
.testimonial-active .slick-arrow:hover {color: 	linear-gradient(90deg, #bfa046, #FFD700);}
.testimonial-avatar.p-relative {
	min-height: 455px;
	display: block;
	overflow: hidden;
}
.testimonial-avatar .ta {
	position: absolute;
	left: 50%;
	top: 50%;
	overflow: hidden;
	transition: all 1200ms ease;
	-moz-transition: all 1200ms ease;
	-webkit-transition: all 1200ms ease;
	-ms-transition: all 1200ms ease;
	-o-transition: all 1200ms ease;
}
.avatar-one.now-in-view {
	top: 0%;
	left: 28%;
}
.avatar-two.now-in-view {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.avatar-three.now-in-view {
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.avatar-four.now-in-view {
	top: 20%;
	left: 70%;
}
.avatar-five.now-in-view {
	top: 70%;
	left: 25%;
}
.avatar-six.now-in-view {
	top: 59%;
	left: 64%;
}
.single-testimonial-bg{
background: #FFFFFF 0% 0% no-repeat padding-box;
box-shadow: 3px 4px 15px #0000001A;
border-radius: 10px;
width: 85%;
float: right;
padding: 30px 50px 100px 150px;
margin: 20px;
    color: #525c7b;
}
.testimonial-active .slick-slide
{
position: relative;
background-color:#fff;
padding:40px;
margin: 15px;
 box-shadow: 1px 1.732px 18px 0px rgba(0, 0, 0, 0.05);
border-radius: 10px;
}

.testimonial-active .slick-slide:hover{
    background: #fff;
    box-shadow: 1px 1.732px 18px 0px rgba(0, 0, 0, 0.05);
}
.testimonial-active .testi-img {
    float: left;
    margin-bottom: 20px;
    position: absolute;
    left: 0;
    top: 80px;
}
.testimonial-active .ta-info {
width: 100%;
margin-top: 15px;
display: inline-block;
}
.testimonial-active .ta-info span {
    color: 	linear-gradient(90deg, #bfa046, #FFD700);
}
.testimonial-active .ta-info h6 {
font-size: 22px;
margin-top: 5px;
margin-bottom: 0;
font-weight: 600;
color: #141b22;
}

.testimonial-active .com-icon {
    position: absolute;
    right: 50px;
    top: 45px;
}
.testimonial-active .slick-dots {
text-align: center;
position: relative;
width: 100%;
margin-top: 35px;
}
.testimonial-active .slick-dots li {
    display: inline-block;
    margin: 0 0px;
    line-height: 0;
}
.testimonial-active .slick-dots li button {
    text-indent: -99999px;
    border:none;
    padding: 0;
    margin-left: 10px;
    z-index: 1;
    cursor: pointer;
    transition: .3s;
     background-color:#cccccc;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}

.testimonial-active .slick-dots .slick-active button {
   width: 10px;
    height: 10px;
    border-radius: 50%;
      background-color:	linear-gradient(90deg, #bfa046, #FFD700);
    
}
.testimonial-active .qt-img {
position: absolute;
right: 30px;
bottom: 50px;
}
.testimonial-active .qt-img img{
    display: inline-block;
}
.testimonial-active2 .qt-img{
    margin-bottom: 30px;
}
.testimonial-active2 .qt-img img{
    display: inline-block;
}
.testimonial-active2 .slider-nav {
    float: right;
    width: 100%;
}
.slider-nav .slick-list.draggable {
    width: 233px;
    float: right;
}

.testimonial-active2 .slick-arrow {
	position: absolute;
top: inherit;
left: inherit;
border: none;
background: none;
padding: 0;
font-size: 24px;
color: #fff;
z-index: 9;
cursor: pointer;
transition: .3s;
right: -96px;
    bottom: 0;
}

.testimonial-active2 .slick-next {
    left: inherit;
    right: -165px;
}
.testimonial-active2 .slick-arrow:hover {color: 	linear-gradient(90deg, #bfa046, #FFD700);}
.testimonial-avatar.p-relative {
	min-height: 455px;
	display: block;
	overflow: hidden;
}
.testimonial-active2 .slick-next.slick-arrow i,.testimonial-active2 .slick-arrow i {
border-radius: 50%;
  background-color: rgb(80, 82, 171);
  box-shadow: 2.5px 4.33px 15px 0px rgba(80, 82, 171, 0.4);
width: 60px;
  height: 60px;
line-height: 60px;
}




.testimonial-active2 .ta-info span {
    color: 	linear-gradient(90deg, #bfa046, #FFD700);
    font-size: 16px;
}
.testimonial-active2 .testi-author{
    border-bottom: none;
    padding-bottom: 0;
}
.testimonial-active2 .ta-info h6 {
font-size: 20px;
margin-bottom: 5px;
color: #141b22;
}
.com-icon {
    position: absolute;
    right: 0;
    top: 20px;
}
.testimonial-item img {
    width: 80px;
    cursor: pointer;
}

.testimonial-active2 .single-testimonial
{
    text-align: center;
    background: #fff;
    float: left;
    padding: 50px;
    border-radius: 8px;
}

.testimonial-active2 .testi-author img {
    float: none;
    margin-top: 0;
    margin-bottom: 20px;
    display: inline-block;
}
.testimonial-active2 .slick-dots li {
    display: inline-block;
    margin: 0 0px;
}
.testimonial-active2 .slick-dots {
    text-align: center;
    position: relative;
    width: 100%;
    margin-top: 25px;
}
.testimonial-active2 .slick-dots li button {
    text-indent: -99999px;
    border: none;
    padding: 0;
    margin-left: 10px;
    z-index: 1;
    cursor: pointer;
    background: no-repeat;
    transition: .3s;
    background-color:#ccc;
    height: 10px;
    width: 10px;
    border-radius: 5px;
}
.testimonial-active2 .ta-info {
    overflow: hidden;
}
.testimonial-active2 .single-testimonial p {
    margin-bottom: 50px;
    font-size: 28px;
    line-height: 38px;
    color: 	linear-gradient(90deg, #bfa046, #FFD700);
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}
.testimonial-active2 .slick-dots .slick-active button {
border-radius: 5px;
     background-color: 	linear-gradient(90deg, #bfa046, #FFD700);
}
.testimonial-area .test-an-01{
    position: absolute;
    bottom: 0;
    animation: alltuchtopdown 3s infinite;
-webkit-animation: alltuchtopdown 3s infinite;
    animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-delay: 1s;
}
.testimonial-area .test-an-02{
    position: absolute;
    top: 0;
    right: 0;

}
.test-line
{
     margin-top: 30px;
    margin-bottom: 30px;
}
.test-line img{
    display: inline-block;
}
.testimonial-active2.testimonial-area3 .single-testimonial{
    background: none;
    padding-top: 0;
    padding-bottom: 0;
}
.testimonial-active2.testimonial-area3 .single-testimonial p{
    color: #fff;
}
.testimonial-active2.testimonial-area3 .ta-info h6{
    color: #fff;
}


.testimonials {
    padding: 50px 0;
    background: #f8f8f8;
}
.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.testimonial-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.testimonial-author {
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
.testimonial-time {
    font-size: 0.9em;
    color: #777;
}
.testimonial-text {
    font-style: italic;
    margin: 10px 0;
}
.testimonial-rating {
    color: #FFD700;
    font-size: 1.2em;
}