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

/* 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: #ca0688;
    
}

.logo {
    width: 125px;
    height: 45px;
}

.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: #26447b;
border: none;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
color: #fff;
margin-right: 15px;
}

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

.hero-buttons .btn-link:hover {
text-decoration: underline;
}
.hero-buttons .btn-primary-orange:hover{
background-color: #ca0688;
color: white;
}


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

/* Services Section */
.service-box {
background-color: #26447b;
border-radius: 15px;
padding: 10px;
text-align: left;
font-size: 14px;
color: #ffffff;
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: #ca0688;
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: 18px; /* Smaller padding for mobile */
font-size: 14px; /* Smaller font size for mobile */
margin-bottom: 10px; /* Add spacing between boxes */
}

.service-icon {
width: 28px; /* Smaller icon for mobile */
height: 28px;
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;
}

.person-image {
    max-width: 100%;
    height: 600px;
}

/* Background Circles */
.circle-bg {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

/* Existing Circle Classes (Unchanged) */
.circle-1 {
width: 500px; /* Reduced size */
height: 500px;
background: linear-gradient(135deg, rgba(53, 53, 245, 0.155) 100%);
top: -60px; /* Adjusted position */
right: 60px;
z-index: 1;
animation: zoom 6s ease-in-out infinite, glow-1 6s ease-in-out infinite;
animation-delay: 10s; /* Delay for outermost circle */
}

.circle-2 {
width: 400px; /* Reduced size */
height: 400px;
background: rgba(27, 27, 175, 0.2);
top: -5px; /* Adjusted position */
right: 110px;
z-index: 1;
animation: zoom 6s ease-in-out infinite, glow-2 6s ease-in-out infinite;
animation-delay: 5s; /* Delay for second circle */
}

.circle-3 {
width: 300px; /* Reduced size */
height: 300px;
background: rgba(10, 10, 30, 0.1);
top: 40px; /* Adjusted position */
right: 160px;
z-index: 1;
animation: zoom 6s ease-in-out infinite, glow-3 6s ease-in-out infinite;
animation-delay: 0s; /* No delay for innermost circle */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
.circle-1 {
width: 400px; /* Smaller size for mobile */
height: 400px;
top: -80px; /* Adjusted for mobile */
right: 20px;
animation-delay: 10s; /* Keep animation delay */
}

.circle-2 {
width: 320px; /* Smaller size for mobile */
height: 320px;
top: -40px; /* Adjusted for mobile */
right: 60px;
animation-delay: 5s; /* Keep animation delay */
}

.circle-3 {
width: 220px; /* Smaller size for mobile */
height: 220px;
top: 10px; /* Adjusted for mobile */
right: 110px;
animation-delay: 0s; /* Keep animation delay */
}
}

/* Zoom Animation (Shared by All Circles) */
@keyframes zoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Subtle zoom effect */
    }
}

/* Glow Animations (Staggered for Each Circle) */
@keyframes glow-1 {
    0%, 100% {
        box-shadow: 0 0 0 rgba(53, 53, 245, 0); /* No glow */
    }
    50% {
        box-shadow: 0 0 30px rgba(53, 53, 245, 0.5); /* Glow matching circle-1 color */
    }
}

@keyframes glow-2 {
    0%, 100% {
        box-shadow: 0 0 0 rgba(27, 27, 175, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(27, 27, 175, 0.4); /* Glow matching circle-2 color */
    }
}

@keyframes glow-3 {
    0%, 100% {
        box-shadow: 0 0 0 rgba(10, 10, 30, 0);
    }
    50% {
        box-shadow: 0 0 15px rgba(10, 10, 30, 0.3); /* Glow matching circle-3 color */
    }
}

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

/* Stat Badge */
.stat-badge {
    position: absolute;
    top: 70px;
    left: -70px;
    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: #26447b;
    z-index: 5;
    animation: slide 2s ease-in-out infinite; /* Add sliding animation */
    display: none;
}

.stat-icon {
    width: 54px;
    height: 54px;
    margin-right: 10px;
    background-color: #e1e1ef;
    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: 270px;
    right: 0;
    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 */
    display: none;
}


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

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

.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: #26447b;
    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('https://via.placeholder.com/1920x1080?text=Abstract+Background'); /* 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: #ff6f61;
font-weight: 600;
margin-bottom: 10px;
}

.about-title {
font-size: 36px;
font-weight: 700;
color: #26447b;
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: #26447b;
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: #26447b; /* 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: #000; /* Black text */
background: #ffffff; /* White background as per your modification */
border: 1px solid #000; /* 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: #26447b;
color: #fff;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
text-decoration: none;
transition: background-color 0.3s ease;
}

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

/* 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: 100%;
height: auto;
}
}


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

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

/* Center-Top Badge (Styled like Stat Badge) */
.experience-badge {
position: absolute;
top: 50px;
left: 10%;
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: #26447b;
z-index: 5;
z-index: 5;
animation: pulse 2s ease-in-out infinite; /* Add pulsing animation */
display: none !important;
}

/* Bottom-Right Badge (Styled like Expert Badge) */
.experience-experts-badge {
position: absolute;
bottom: -50px;
right: 10px;
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 */
display: none;
}



/* 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 */
display: none !important;
}

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


/* 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: #26447b;
}

.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: #26447b;
margin-left: -10px;
}

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

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

.experience-title {
font-size: 36px;
font-weight: 700;
color: #26447b;
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, #26447b, #5f5fe7);
border-radius: 15px;
padding: 15px 20px;
margin-bottom: 15px;
color: #fff;
}

.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: #fff;
}

.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: #26447b;
color: #fff;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
text-decoration: none;
transition: background-color 0.3s ease;
}

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

/* 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;
display: none;
}

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

.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: 20px;
height: 20px;
margin-right: 10px; /* Space between icon and text on mobile */
}

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

/* Testimonial Section */
/* Testimonial Section */
:root{
    --bg: #ffffff;
    --card: #f7f9fb;
    --accent: #0748b9;
    --text: #0b1220;
    --muted: #6b7280;
    --radius: 14px;
    --gap: 18px;
  }

  body{
    margin:0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background:var(--bg);
    color:var(--text);
    -webkit-font-smoothing:antialiased;
  }

  .testimonials1 {
    max-width:1100px;
    margin:60px auto;
    padding:28px;
  }

  .carousel1 {
    position:relative;
    overflow:hidden;
    border-radius:var(--radius);
    background:linear-gradient(180deg, rgba(7,72,185,0.04), rgba(7,72,185,0.01));
    padding:28px 22px;
  }

  .carousel-viewport1 {
    display:flex;
    transition:transform 450ms cubic-bezier(.22,.9,.32,1);
    gap:var(--gap);
    will-change:transform;
  }

  .slide1 {
    min-width:100%;
    box-sizing:border-box;
    background:var(--card);
    padding:20px;
    border-radius:12px;
    display:flex;
    gap:16px;
    align-items:flex-start;
    box-shadow: 0 6px 18px rgba(11,18,32,0.06);
  }

  /* avatar */
  .avatar1 {
    width:72px;
    height:72px;
    flex:0 0 72px;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 6px 14px rgba(7,72,185,0.12);
    border:3px solid rgba(255,255,255,0.6);
    background:linear-gradient(135deg, rgba(7,72,185,0.12), rgba(7,72,185,0.02));
  }
  .avatar1 img{width:100%;height:100%;object-fit:cover;display:block}

  .content1{
    flex:1 1 auto;
  }

  .quote1 {
    font-size:1rem;
    line-height:1.5;
    color:var(--text);
    margin-bottom:12px;
  }

  .who1 {
    display:flex;
    gap:8px;
    align-items:center;
  }
  .who1 .name {
    font-weight:700;
    color:var(--text);
  }
  .who1 .role {
    font-size:0.88rem;
    color:var(--muted);
  }

  /* nav */
  .nav1 {
    position:absolute;
    right:16px;
    top:16px;
    display:flex;
    gap:8px;
  }

  .btn1 {
    background:transparent;
    border:0;
    width:38px;
    height:38px;
    border-radius:10px;
    display:inline-grid;
    place-items:center;
    cursor:pointer;
    transition:all .18s ease;
    color:var(--accent);
  }
  .btn1:hover{ transform:translateY(-2px); box-shadow:0 6px 18px rgba(7,72,185,0.08) }

  .dots1 {
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:16px;
  }
  .dot1 {
    width:10px;height:10px;border-radius:999px;background:#d1d5db;cursor:pointer;border:0;
  }
  .dot1.active{ background:var(--accent); transform:scale(1.15) }

  /* larger layout: show 2 slides side-by-side */
  @media (min-width:900px){
    .slide1{ min-width:50% }
  }

  /* mobile tweaks */
  @media (max-width:520px){
    .testimonials1{ padding:16px;margin:28px auto }
    .avatar1{ width:56px;height:56px;flex:0 0 56px }
    .btn1{ width:34px;height:34px }
    .slide1{ padding:16px }
  }
/* Contact Me Section */
.contact-title {
font-size: 36px;
font-weight: 700;
color: #26447b;
margin-bottom: 10px;
}

.contact-subtitle {
font-size: 18px;
font-weight: 500;
color: #ff6f61;
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: #26447b;
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: #26447b;
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: #26447b;
color: #fff;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
text-decoration: none;
transition: background-color 0.3s ease;
}

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

.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: #26447b;
font-weight: 600;
}

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

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

.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;
}
}


