
body, html{
    font-family: 'Poppins', sans-serif;
    /*background-color:#eeeee4;*/
    overflow-x: hidden; /* Prevent horizontal overflow */
    }


/* Navbar Styling to match the image */
.navbar {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 0 solid #ddd;
    transition: all 0.3s ease;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}
.navbar-nav .nav-link {
    font-size: 14px;
    color: #333;
    text-transform: capitalize;
    margin-left: 20px;
    font-weight: 600;
}
.navbar-nav .nav-link:hover {
    color: #497FC5;
    
}



.top-bar a:hover {
    text-decoration: underline;
}
/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow-x: hidden;
}

/* Left Column Styling */
.hero-title {
font-size: 39px;
font-weight: 700;
line-height: 1.2;
color: #000000;
margin-bottom: 20px;
}

.hero-subtitle {
font-size: 16px;
color: #666;
margin-bottom: 30px;
}

.hero-buttons .btn-primary-orange {
background-color: #ed8;
border: none;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
color: #497FC5;
margin-right: 15px;
}

.hero-buttons .btn-link {
color: #000000;
font-size: 16px;
text-decoration: none;
}

.hero-buttons .btn-link:hover {
text-decoration: underline;
}
.hero-buttons .btn-primary-orange:hover{
background-color: #497FC5;
color: #ed8;
}


/* Services Section */
.services-title {
font-size: 14px;
font-weight: 600;
color: #000000;
margin-bottom: 15px;
}

/* Services Section */
.service-box {
background-color: #ffffff;
border-radius: 15px;
padding: 10px;
text-align: left;
font-size: 14px;
color: #000000;
box-shadow: 0 0 0 rgba(252, 240, 185, 0.5);
animation: bounce 1.5s ease-in-out infinite; /* Changed to clicking animation */
}

@keyframes bounce {
0%, 100% {
transform: translateY(0); /* Start/end position */
}
50% {
transform: translateY(-3px); /* Bounce up */
}
}

/* Existing Mobile Adjustments (Updated for Clicking Animation) */
@media (max-width: 768px) {
.service-box {
padding: 8px;
font-size: 12px;
margin-bottom: 10px;
animation: bounce 1.5s ease-in-out infinite; /* Ensure clicking animation applies on mobile */
}
}

.service-icon {
width: 34px;
height: 34px;
margin-bottom: 9px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
.hero-title {
font-size: 28px; /* Smaller font size for mobile */
margin-top: 50px;
}

.hero-subtitle {
font-size: 14px; /* Smaller font size for mobile */
margin-bottom: 20px;
max-width: 400px;
}

.hero-buttons .btn-primary-orange {
padding: 10px 20px; /* Smaller padding for mobile */
font-size: 14px; /* Smaller font size for mobile */
margin-right: 10px;
}
.hero-buttons .btn-primary-orange:hover{
background-color: #497FC5;
color: white;
}

.hero-buttons .btn-link {
font-size: 14px; /* Smaller font size for mobile */
}

.services-title {
font-size: 18px; /* Smaller font size for mobile */
margin-bottom: 10px;
}

.service-box {
padding: 10px; /* Smaller padding for mobile */
font-size: 14px; /* Smaller font size for mobile */
margin-bottom: 10px; /* Add spacing between boxes */
margin-left:13px;
}

.service-icon {
width: 48px; /* Smaller icon for mobile */
height: 48px;
margin-bottom: 10px;
}

/* Adjust the service boxes layout for mobile */
.services-section .row {
display: flex;
flex-wrap: wrap; /* Ensure boxes wrap properly */
}

.services-section .col-3 {
flex: 0 0 100%; /* Two boxes per row on mobile */
max-width: 100%;
padding: 0 5px; /* Add small padding between boxes */
}
}

/* Right Column Styling */
.person-container {
    position: relative;
    z-index: 2;
    display: inline-block;
    height: 100%;
}

.person-image {
    max-width: 200%;
    height: 600px;
    margin-top:-50px;
    margin-right:-30px;
}


.person-image {
    position: relative;
    z-index: 2; /* Ensure person stays above circles */
   
}

.person-imagemobile{
    margin-top:-50px;
    margin-right:-15px;
    width:100% !important;
    height: 370px;
}

/* Stat Badge */
.stat-badge {
    position: absolute;
    top: 280px;
    left: 50px;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center; /* Corrected from 'left' to 'center' for proper alignment */
    font-size: 14px;
    color: #497FC5;
    z-index: 5;
    animation: slide 2s ease-in-out infinite; /* Add sliding animation */
}

.stat-icon {
    width: 54px;
    height: 54px;
    margin-right: 10px;
    background-color: #ed8;
    padding: 10px;
    border-radius: 5px;
    color: #ffffff;

}

.stat-badge p {
    margin: 0;
}

/* Sliding Animation */
@keyframes slide {
0%, 100% {
transform: translateX(0); /* Start and end position */
}
50% {
transform: translateX(15px); /* Slide to the right by 20px */
}
}

/* Experts Badge */
.experts-badge {
    position: absolute;
    bottom: 360px;
    right: 47px;
    background-color: #fff;
    border-radius: 15px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    animation: slide 2s ease-in-out infinite; /* Add sliding animation */
}


.experts-content {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #497FC5;
}

.experts-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.experts-content p {
    margin: 0;
    margin-right: 10px;
    color:#497FC5;
}

.experts-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: -10px;
    border: 2px solid #fff;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e6f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ed8;
    margin-left: -10px;
}

/* Decorative Dots */
.dots-left {
    position: absolute;
    top: 20px;
    left: -50px;
    width: 50px;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="100"><circle cx="10" cy="10" r="5" fill="#ff6f61"/><circle cx="10" cy="30" r="5" fill="#ff6f61"/><circle cx="10" cy="50" r="5" fill="#ff6f61"/></svg>') no-repeat;
}

.dots-right {
    position: absolute;
    top: 20px;
    right: -30px;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30"><circle cx="15" cy="15" r="10" fill="#ff6f61"/></svg>') no-repeat;
}

/* Section Styling */
.section-padding {
    padding: 60px 0;
}
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
/* Contact Form */
.contact-form .form-control {
    margin-bottom: 15px;
}
/* Footer */
footer {
    background-color: #26447b;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.hero-section {
    padding: 80px 0;
    position: relative;
    background: none; /* Remove the previous background */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img.rebecca 1.jpg'); /* Replace with your non-office background image */
    background-size: cover;
    background-position: center;
    animation: oscillate-bg 5s ease-in-out infinite; /* Apply oscillation to the background */
    z-index: 1; /* Ensure it stays behind the person */
}

.hero-section .container {
    position: relative;
    z-index: 2; /* Ensure content stays above the background */
}

@keyframes oscillate-bg {
    0% { background-position: center 0; }
    50% { background-position: center 20px; } /* Moves the background up and down */
    100% { background-position: center 0; }
}


/* About Me Section */
.section-padding {
padding: 60px 0;
}

.shadow-box {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Shadow for the row */
border-radius: 15px;
background-color: #fff;
padding: 30px;
}

/* Left Column Styling */
.about-left-content {
padding-right: 20px;
}

.about-subtitle {
font-size: 18px;
color: 000000;
font-weight: 600;
margin-bottom: 10px;
}

.about-title {
font-size: 36px;
font-weight: 700;
color: #000000e5;
margin-bottom: 20px;
}

.about-text {
font-size: 16px;
color: #666;
margin-bottom: 30px;
}

/* Progress Bars */
/* Progress Bars */
.progress-bar-section {
margin-bottom: 30px;
}

.progress-item {
margin-bottom: 20px;
}

.progress-label {
font-size: 14px;
font-weight: 600;
color: #000000;
margin-bottom: 5px;
}

.progress-bar {
width: 100%;
height: 8px;
background: linear-gradient(90deg, #a8a8ab, #cdccce);
border-radius: 4px;
position: relative;
overflow: visible; /* Ensure overflow doesn’t hide the percentage */
}

.progress-fill {
height: 100%;
background: #ed8; /* Assuming this is the color you chose */
position: relative;
border-radius: 4px;
width: 0;
animation: fillProgress 2s ease-in-out forwards;
}

.progress-percentage {
position: absolute;
top: -10px; /* Position above the bar */
right: 0; /* Align to the right end of the fill */
transform: translateX(50%); /* Center the percentage bubble on the end of the fill */
font-size: 12px;
font-weight: 600;
color: #497FC5; /* Black text */
background: #ffffff; /* White background as per your modification */
border: 1px solid #497FC5; /* Black border */
border-radius: 4px; /* Rounded corners */
padding: 2px 8px;
z-index: 10; /* Increased z-index for safety */
}

/* Animation for Progress Fill */
@keyframes fillProgress {
0% {
width: 0;
}
80% {
width: inherit;
}
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.progress-item {
margin-bottom: 15px;
}

.progress-label {
font-size: 12px;
}

.progress-bar {
height: 6px;
overflow: visible; /* Ensure overflow doesn’t hide the percentage on mobile */
}

.progress-fill {
animation: fillProgress 2s ease-in-out forwards;
}

.progress-percentage {
font-size: 10px;
top: -5px;
padding: 1px 6px;
transform: translateX(50%);
z-index: 10;
}
}

/* Contact Me Button */
.contact-btn {
background-color: #ed8;
color: #497FC5;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.contact-btn:hover {
background-color: #497FC5;
color:#ed8;
}

/* Right Column Styling */
.about-right-content {
padding-left: 20px;
}

.about-image {
width: 100%;
height: auto;
border-radius: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.shadow-box {
padding: 20px;
}

.about-left-content {
padding-right: 0;
margin-bottom: 20px;
}

.about-right-content {
padding-left: 0;
}

.about-subtitle {
font-size: 16px;
}

.about-title {
font-size: 28px;
margin-bottom: 15px;
}

.about-text {
font-size: 14px;
margin-bottom: 20px;
}

.progress-item {
margin-bottom: 15px;
}

.progress-label {
font-size: 12px;
}

.progress-bar {
height: 6px;
}

.progress-percentage {
font-size: 12px;
top: -25px;
padding: 1px 6px;
}

.contact-btn {
padding: 10px 20px;
font-size: 14px;
}

.about-image {
width: 800px;
height: 370px;
}
}


/* Experience Section */
.experience-left-content {
padding-right: 20px;
}

.experience-image {
width: 100%;
height: 490px;
border-radius: 15px;
}

/* Center-Top Badge (Styled like Stat Badge) */
.experience-badge {
position: absolute;
margin-top: -80px;
left: 25%;
transform: translateX(-50%); /* Center horizontally */
background-color: #fff;
border-radius: 15px;
padding: 10px 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
font-size: 14px;
color: #497FC5;
z-index: 5;
z-index: 5;
animation: pulse 2s ease-in-out infinite; /* Add pulsing animation */
}

/* Bottom-Right Badge (Styled like Expert Badge) */
.experience-experts-badge {
position: absolute;
bottom: 210px;
right: 0px;
background-color: #fff;
border-radius: 15px;
padding: 10px 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
z-index: 5;
animation: pulse 2s ease-in-out infinite; /* Add pulsing animation */
}



/* Pulsing Animation */
@keyframes pulse {
0%, 100% {
transform: translateX(-50%) scale(1); /* Normal size (adjusted for center-top badge) */
}
50% {
transform: translateX(-50%) scale(1.05); /* Slightly larger */
}
}

/* Ensure transform works for experience-experts-badge (which doesn’t need translateX) */
.experience-experts-badge {
transform: none; /* Reset any inherited transform */
animation: pulse-experts 2s ease-in-out infinite; /* Separate animation for this badge */
}

@keyframes pulse-experts {
0%, 100% {
transform: scale(1); /* Normal size */
}
50% {
transform: scale(1.05); /* Slightly larger */
}
}

/* Mobile Responsiveness (Updated) */
@media (max-width: 768px) {
.experience-badge {
top: 10px;
padding: 8px 15px;
font-size: 12px;
animation: pulse 2s ease-in-out infinite; /* Keep animation on mobile */
}

.experience-experts-badge {
bottom: 10px;
right: 10px;
padding: 8px 15px;
animation: pulse-experts 2s ease-in-out infinite; /* Keep animation on mobile */
}
}


/* Reused Badge Styles */
.experience-icon, .experts-icon {
width: 24px;
height: 24px;
margin-right: 10px;
}

.experience-badge p {
margin: 0;
}

.experts-content {
display: flex;
align-items: center;
font-size: 14px;
color: #497FC5;
}

.experts-content p {
margin: 0;
margin-right: 10px;
}

.experts-avatars {
display: flex;
align-items: center;
}

.avatar {
width: 32px;
height: 32px;
border-radius: 50%;
margin-left: -10px;
border: 2px solid #fff;
}

.avatar:first-child {
margin-left: 0;
}

.avatar-more {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: #e6f0fa;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
color: #497FC5;
margin-left: -10px;
}

/* Right Column Styling */
.experience-right-content {
padding-left: 20px;
}

.experience-subtitle {
font-size: 18px;
color: #000000;
font-weight: 600;
margin-bottom: 10px;
}

.experience-title {
font-size: 36px;
font-weight: 700;
color: #000000;
margin-bottom: 20px;
}

.experience-text {
font-size: 16px;
color: #666;
margin-bottom: 30px;
}

/* Experience Boxes (Designed like the Image) */
/* Experience Boxes */
.experience-box {
display: flex;
flex-direction: row; /* Keep row for icon positioning */
justify-content: space-between;
align-items: center;
background: linear-gradient(90deg, #ffffff, #ffffff);
border-radius: 15px;
padding: 15px 20px;
margin-bottom: 15px;
color: #497FC5;
}

.experience-box-content {
display: flex;
flex-direction: column; /* Stack h1 and span vertically */
flex-grow: 1; /* Take available space */
}

.experience-box-title {
font-size: 26px; /* Adjust size as needed */
font-weight: 700;
margin-bottom: 5px; /* Space between h1 and span */
color: #26447b;
}

.experience-box-text {
font-size: 16px;
font-weight: 600;
}

.experience-box-icon {
width: 44px;
height: 44px;
margin-left: 10px; /* Space between text and icon */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.experience-box {
flex-direction: row-reverse; /* Icon on the left on mobile */
padding: 10px 15px;
}

.experience-box-content {
flex-direction: column; /* Keep h1 above span on mobile */
}

.experience-box-title {
font-size: 26px;
}

.experience-box-text {
font-size: 12px;
}

.experience-box-icon {
width: 29px;
height: 29px;
margin-right: 10px; /* Space between icon and text on mobile */
margin-left: 0;
}
}

/* Contact Me Button (Reused from About Me) */
.contact-btn {
background-color: #ed8;
color: #497FC5;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.contact-btn:hover {
background-color: #497FC5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.experience-left-content {
padding-right: 0;
margin-bottom: 20px;
}

.experience-right-content {
padding-left: 0;
}

.experience-image {
width: 100%;
height: auto;
}

.experience-badge {
top: 10px;
padding: 8px 15px;
font-size: 12px;
}

.experience-experts-badge {
bottom: 10px;
right: 10px;
padding: 8px 15px;
}

.experience-icon, .experts-icon {
width: 20px;
height: 20px;
}

.avatar {
width: 28px;
height: 28px;
}

.avatar-more {
width: 28px;
height: 28px;
font-size: 10px;
}

.experience-subtitle {
font-size: 16px;
}

.experience-title {
font-size: 28px;
margin-bottom: 15px;
}

.experience-text {
font-size: 14px;
margin-bottom: 20px;
}

.experience-box {
flex-direction: row-reverse; /* Icon on the left on mobile */
padding: 10px 15px;
font-size: 12px;
}

.experience-box-icon {
width: 40px;
height: 40px;
margin-right: 20px; /* Space between icon and text on mobile */
}

.contact-btn {
padding: 10px 20px;
font-size: 14px;
}
}

.experience-text{
color:#497FC5; 
}

/* Testimonial Section */
#testimonials {
background: linear-gradient(#ed8, #497FC5), url('') center/cover no-repeat; 
padding: 60px 0;
}

.testimonials-title {
font-size: 36px;
font-weight: 700;
color: #fff;
text-align: left;
margin-bottom: 150px;
}


.testimonial-quote-box {
background: #497FC5;
border-radius: 15px;
padding: 50px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
position: relative;
min-height: 550px;
min-width: 900px;
margin: 90px ;
margin-left: -5px;
}

.quote-content {
max-width: 250px;
margin-right: 20px;
margin-top: 100px;
}

.quote-circle {
position: absolute;
top: -55px;
left: 20px;
background: #ed8;
color: #497FC5;
border: 4px solid #497FC5;
border-radius: 50%;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
font-weight: 700;
}

.testimonial-carousel-box {
position: absolute;
top: 80px;
bottom: 30px;
right: 280px;
width: calc(100% - 150px);
}

.testimonial {
      text-align: center;
      padding: 20px;
    }
    .testimonial img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .testimonial h5 {
      margin-top: 10px;
      font-weight: bold;
    }
    .testimonial p {
      font-size: 0.9rem;
      color: #555;
    }
    .stars {
      color: gold;
      margin-top: 10px;
    }

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .testimonial-quote-box {
    min-width: auto; /* remove fixed width */
    margin: 20px auto; /* center it */
    padding: 20px;
  }

  .quote-content {
    margin: 0 auto 20px auto;
    max-width: 100%;
    text-align: center;
  }

  .quote-circle {
    position: static;
    margin: 0 auto 10px auto;
  }

  .testimonial-carousel-box {
    position: static;
    width: 100%;
    right: auto;
  }

  .testimonial img {
    width: 100px;
    height: 100px;
  }

  .testimonial h5,
  .testimonial p {
    text-align: center;
  }

  .carousel-inner .row {
    flex-direction: column;
    align-items: center;
  }

  .carousel-inner .col-md-4 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}


/* Contact Me Section */
.contact-title {
font-size: 36px;
font-weight: 700;
color: #000000;
margin-bottom: 10px;
}

.contact-subtitle {
font-size: 18px;
font-weight: 500;
color: #497FC5;
margin-bottom: 0;
}

.contact-form-column {
padding-right: 20px;
}

.contact-form {
background: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-label {
font-size: 14px;
font-weight: 600;
color: #497FC5;
margin-bottom: 5px;
}

.form-control, .form-select {
border-radius: 8px;
border: 1px solid #ddd;
padding: 10px 15px;
font-size: 14px;
color: #666;
transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
border-color: #ed8;
box-shadow: 0 0 5px rgba(26, 26, 61, 0.2);
outline: none;
}

.form-control::placeholder {
color: #aaa;
}

.form-select option {
color: #666;
}

textarea.form-control {
resize: none;
}

/* Send Message Button (Reused from Previous Sections) */
.contact-btn {
background-color: #ed8;
color: #497FC5;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.contact-btn:hover {
background-color: #497FC5;
}

.contact-info-column {
padding-left: 20px;
}

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

.contact-info-item {
margin-bottom: 30px;
}

.contact-info-icon {
width: 24px;
height: 24px;
}

.contact-info p {
font-size: 16px;
color: #000000;
font-weight: 600;
}

.contact-info-link {
font-size: 14px;
color: #497FC5;
text-decoration: none;
transition: color 0.3s ease;
}

.contact-info-link:hover {
color: #ed8;
}

.contact-info-text {
font-size: 14px;
color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.contact-title {
font-size: 28px;
}

.contact-subtitle {
font-size: 16px;
}

.contact-form-column {
padding-right: 0;
margin-bottom: 20px;
}

.contact-form {
padding: 20px;
}

.form-label {
font-size: 12px;
}

.form-control, .form-select {
padding: 8px 12px;
font-size: 12px;
}

.contact-btn {
padding: 10px 20px;
font-size: 14px;
}

.contact-info-column {
padding-left: 0;
}

.contact-info-item {
margin-bottom: 20px;
}

.contact-info-icon {
width: 20px;
height: 20px;
}

.contact-info p {
font-size: 14px;
}

.contact-info-link, .contact-info-text {
font-size: 12px;
}
}

