* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
html {
overflow-x: hidden;
scroll-behavior: smooth;
}
body {
/*font-family: 'kanit', sans-serif;*/
overflow-x: hidden;
}
a {
text-decoration: none !important;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
filter: brightness(82%);
}
.theme-color {
color: #fbae43;
} 
/* Header Styling */
header {
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
height: 60px;
top: 0;
background-color: #fff;
color: black;
padding: 20px;
z-index: 10;
transition: background-color 0.3s ease;
} 
header .logo img {
height: 50px;
}  
header nav ul {
list-style: none;
display: flex;
gap: 20px;
}  
header nav ul li {
position: relative;
}  
header nav ul li a {
text-decoration: none;
color: #000;
font-size: 16px;
font-weight: bold;
padding: 5px 10px;
border-radius: 5px;
transition: all 0.3s ease;
}  
/* Unique Hover Effect */
header nav ul li a:hover {
background-color: #fbae43;
transform: scale(1.1);
}  
/* Hover underline effect */
header nav ul li a::after {
content: "";
position: absolute;
left: 0;
bottom: -5px;
width: 0;
height: 3px;
background-color: #fbae43;
transition: width 0.3s;
}  
header nav ul li a:hover::after {
width: 100%;
}  
/* Mobile Menu Styling */
.menu-icon {
display: none;
cursor: pointer;
flex-direction: column;
gap: 4px;
}  
.menu-icon .bar {
width: 25px;
height: 3px;
background-color: #000;
border-radius: 5px;
}  
#nav {
display: flex;
}  
#nav ul {
display: flex;
text-align: left;
}
.blue-line{
background-color: #263a80;
height: 3px;
}
.blue-line1{
background-color: #263a80;
height: 3px;
}  
@media (max-width: 768px) {
header nav {
position: absolute;
top: 100%;
right: 0;
width: 100%;
max-height: 0;
overflow: hidden;
background-color: #fbae43;
transition: max-height 0.4s ease-in-out;
z-index: 1000;
}
#nav.active {
max-height: 900px; /* Adjust based on number of links */
}
#nav ul {
flex-direction: column;
align-items: flex-start; /* Align items to the left */
padding: 20px;
gap: 16px;
margin: 0;
list-style: none; /* Remove bullets */
}
#nav ul li {
width: 100%;
}
#nav ul li a {
display: block;
width: 100%;
padding: 12px 20px;
text-align: left;
font-weight: 600;
background-color: #263a80;
color: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
#nav ul li a:hover {
transform: translateX(5px);
background-color: #1a295f;
color: #fff;
}
.menu-icon {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 12px;
}
.menu-icon.active .bar:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.menu-icon.active .bar:nth-child(2) {
opacity: 0;
}
.menu-icon.active .bar:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
}
section {
text-align: center;
}
#home {
background-color: #fff;
}
#about-us {
background-color: #fff;
}
#contact-us {
background-color: #fff;
}
.hero-banner {
position: relative;
height: 100vh;
overflow: hidden;
color: white;
margin-bottom: 0px;
}
.bg-slider {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 1;
}
.bg-slider img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
opacity: 0;
transition: opacity 1s ease-in-out;
}
.bg-slider img.active {
opacity: 1;
z-index: 2;
}
.content-overlay {
position: relative;
z-index: 3;
height: 100%;
display: flex;
align-items: center;
background: rgba(0,0,0,0.5); /* Slight dark tint for readability */
padding: 40px 20px;
}
.left-text h1 {
font-size: 50px;
font-weight: bold;
color: white;
padding-left: 40px;
margin-right: 300px;
text-align: left; /* ✅ Added */
}
.left-text .highlight {
font-size: 50px;
font-weight: bold;
color: #fbae43;
margin-right: 300px;
text-align: left; /* ✅ Added */
}
@media (max-width: 768px) {
.left-text h1 {
font-size: 25px;
text-align: left; /* ✅ Add this too */
}
.left-text .highlight {
color: #fbae43;
font-size: 25px;
text-align: left;
}     
}
.form-wrap {
background: rgba(255, 255, 255, 0.45);
padding: 30px;
height: 400px;
width: 350px;
border-radius: 10px;
color: black;
position: absolute; /* Changed to fixed positioning */
right: 50px; /* Distance from right edge */
top: 50%; /* Center vertically */
transform: translateY(-50%); /* Perfect vertical centering */
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
z-index: 1000; /* Ensures it stays above other content */
}
.form-wrap h3 {
margin-bottom: 15px;
font-size: 20px;
color: #ffffff;
font-weight: 900;
}
.form-wrap input,
.form-wrap textarea {
width: 100%;
padding: 8px 12px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 6px;
}
.form-wrap button {
background-color: #fbae43;
width: 200px;
color: white;
padding: 10px 18px;
border: none;
border-radius: 6px;
cursor: pointer;
}
section {
/*padding: 50px 20px;
height: 100vh;*/
text-align: center;
}
/*----------Banner-------------*/
.hero-banner {
position: relative;
height: 100vh;
overflow: hidden;
color: white;
margin-bottom: 0px;
}
/* Slider behind everything */
.bg-slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
overflow: hidden;
}  
.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}  
.slide.active {
opacity: 1;
z-index: 2;
}  
.slide img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Content Overlay */
.content-overlay {
position: relative;
z-index: 3;
height: 100%;
display: flex;
align-items: center;
background: rgba(0,0,0,0.6); /* Slight dark tint for readability */
padding: 40px 20px;
}  
.left-text h1 {
font-size: 40px;
font-weight: bold;
color: white;
margin: 0 0 20px 80px;
text-align: left;
}  
.highlight {
font-size: 30px;
font-weight: bold;
color: #fbae43;
margin-left: 80px;
display: block;
text-align: left;
}  
@media (max-width: 768px) {
.left-text h1 {
font-size: 25px;
text-align: left; /* ✅ Add this too */
}
.left-text .highlight {
color: #fbae43;
font-size: 20px;
text-align: left;
}     
}  
.form-wrap {
background: rgba(255, 255, 255, 0.45);
padding: 30px;
height: 400px;
width: 350px;
margin-right: 80px;
border-radius: 10px;
color: black;
position: absolute; /* Changed to fixed positioning */
right: 50px; /* Distance from right edge */
top: 50%; /* Center vertically */
transform: translateY(-50%); /* Perfect vertical centering */
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
z-index: 1000; /* Ensures it stays above other content */
}
.form-wrap h3 {
margin-bottom: 15px;
font-size: 20px;
color: #ffffff;
font-weight: 900;
}  
.form-wrap input,
.form-wrap textarea {
width: 100%;
padding: 8px 12px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 6px;
}  
.form-wrap button {
background-color: #fbae43;
width: 200px;
color: white;
padding: 10px 18px;
border: none;
border-radius: 6px;
cursor: pointer;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
.content-overlay {
padding: 30px 40px;
}
.left-text h1,
.left-text .highlight {
font-size: 40px;
}
}
@media (max-width: 768px) {
.content-overlay {
flex-direction: column;
align-items: center;
text-align: center;
padding: 30px 20px;
}
.left-text h1,
.left-text .highlight {
font-size: 28px;
text-align: center;
margin-right: 0;
margin-left: 0;
padding-left: 0;
margin-top: 10px;
}
.form-wrap {
width: 100%;
margin-left: 0;
max-width: 300px;
margin-top: 50px;
margin-right: 0;
}
}
@media (max-width: 480px) {
.left-text h1,
.left-text .highlight {
font-size: 22px;
}
.form-wrap {
padding: 20px;
}
}
/*------hero-section-------*/
.hero-section {
background-color: #fbae43;
margin-top: 30px;
padding: 50px 20px;
text-align: center;
color: #000;
} 
.hero h2 {
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
} 
.hero p {
font-size: 18px;
margin-bottom: 30px;
padding-left: 80px;
padding-right: 80px;
margin-bottom: 50px;
} 
.blb-btn {
background-color: white;
color: #fbae43;
padding: 12px 24px;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.blb-btn:hover {
background-color: #263a80;
color: white;
} 
@media (max-width: 768px) {
.hero h2 {
font-size: 28px;
} 
.hero p {
font-size: 16px;
padding-left: 0;
padding-right: 0;
}
}
#services img {
display: block;          /* Makes the image a block element */
margin-left: auto;       /* Auto margin left */
margin-right: auto;      /* Auto margin right */
margin-bottom: 20px;     /* Space below image */
width: 60px;             /* Set desired image width */
height: auto;            /* Keep aspect ratio */
}
 /*----------choose-us-------------*/
  .choose-us {
    padding: 30px 20px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 70px;
  }
  .choose-us h2{
    font-weight: 650;
  }
  
  .choose-heading {
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
  }
  
  .choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px; /* reduced from 30px */
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  .choose-card {
    background: #fff;
    padding: 20px 15px; /* reduced from 30px 20px */
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  
  .choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .choose-card img {
  display: block;
  margin: 0 auto;
  height: 60px;
  margin-bottom: 20px;
}

  
  .choose-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
  }
  
  .choose-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
  }
/*------steps------*/
.how-we-help {
background: #fbae43;
text-align: center;
padding: 80px 20px;
margin-bottom: 10px;
margin-top: 40px;
}
.section-header .mini-title {
font-weight: bold;
font-size: 14px;
letter-spacing: 1px;
color: #333;
text-transform: uppercase;
margin-bottom: 10px;
}
.section-header{
font-size: 36px;
color: #111;
margin-bottom: 10px;
font-weight: bold;
}
.section-header .subtitle {
font-size: 18px;
color: #555;
max-width: 1200px;
margin: 0 auto 40px;
}
.steps {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.step {
background: white;
border-radius: 0;
padding: 30px 20px;
width: 100%; /* Default to full width on small screens */
max-width: 22%; /* 4 in a row with spacing (roughly 25% minus gap) */
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}    
/* Optional: Ensure boxes remain side-by-side only on larger screens */
@media (max-width: 1024px) {
.step {
max-width: 45%; /* 2 per row on tablets */
}
}
@media (max-width: 600px) {
.step {
max-width: 100%; /* Full width on phones */
}
}       
.step img {
width: 50px;
margin-bottom: 15px;
display: block; /* Ensures the image behaves as a block-level element */
}    
.step:hover {
transform: translateY(-5px);
}
.step-img{
width: 60px !important;
margin-bottom: 10px !important;
}
.step h3 {
font-size: 20px;
color: #111;
margin-bottom: 10px;
}
.step p {
font-size: 15px;
color: #666;
}
.contact-btn {
background-color: #263a80;
color: #fff;
padding: 12px 24px;
border: none;
border-radius: 8px;
margin-top: 40px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.contact-btn:hover {
background-color: #1c2a5f;
}
/*-------Gallery-Section--------*/
.gallery-section {
padding: 40px 2%;
background-color: #fff;
text-align: center;
padding-right: 120px;
padding-left: 120px;
}
.gallery-title {
font-size: 36px;
margin-bottom: 30px;
color: #000;
font-weight: bold;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr); /* Force 4 columns */
gap: 10px;
}
.gallery-grid img {
width: 100%;
aspect-ratio: 2 / 1.5;
object-fit: cover;
cursor: pointer;
border-radius: 0;
transition: transform 0.3s ease;
} 
.gallery-grid img:hover {
transform: scale(1.05);
}
@media (max-width: 768px) {
.gallery-grid {
grid-template-columns: repeat(2, 1fr);
}
.gallery-section {
padding-right: 10px !important;
padding-left: 10px !important;
}
}
/* Lightbox */
#lightbox {
position: fixed;
display: none;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
z-index: 999;
}
.lightbox-img {
max-width: 90%;
max-height: 80%;
border-radius: 8px;
}
#lightbox .close {
position: absolute;
top: 20px;
right: 40px;
font-size: 40px;
color: white;
cursor: pointer;
}
.float-btn {
position: fixed;
right: 20px;
z-index: 9999;
display: flex;
align-items: center;
text-decoration: none;
} 
.phone-float {
bottom: 80px;
}
.whatsapp-float {
bottom: 20px;
}  
.float-btn a {
display: inline-flex;
} 
.float-btn img {
width: 50px;
height: 50px;
cursor: pointer;
}
/* Tooltip-style popup */
.popup-box {
background: #263a80;
color: #fff;
padding: 6px 12px;
font-size: 14px;
white-space: nowrap;
margin-right: 10px;
opacity: 0;
transform: translateX(10px);
transition: opacity 0.1s ease, transform 0.1s ease;
pointer-events: none;
}  
/* Show popup only on hover */
.float-btn:hover .popup-box {
opacity: 1;
transform: translateX(0);
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-8px);
}
}  
.float-btn img {
width: 50px;
height: 50px;
cursor: pointer;
animation: bounce 1.5s infinite;
}
/*--------------- logo ---------------*/
.logo-strip {
display: flex;
flex-direction: column;
gap: 20px;
padding: 40px 0;
background-color: #fff;
}
.marquee {
overflow: hidden;
position: relative;
width: 100%;
}
.marquee-track {
display: flex;
width: max-content;
animation: scroll-left 20s linear infinite;
}
.reverse .marquee-track {
animation: scroll-right 20s linear infinite;
}
.marquee-track img {
width: 100px;
height: 100px;
object-fit: contain;
margin: 0 20px;
flex-shrink: 0;
}
@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}
@keyframes scroll-right {
0% {
transform: translateX(-50%);
}
100% {
transform: translateX(0%);
}
}
/*---------testimonial-----------*/
.testimonials-section{
width: 100%;
padding: 4rem 2rem;
background-color: #fff;
text-align: center;
}
.testimonials-section .section-header{
text-align: center;
margin: 0 auto 40px;
background-color: #fff !important;
}
.testimonial-card{
width: 320px;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%; /* ensures equal height within container */
min-height: 450px; /* ensures cards are consistently sized */
}
.section-header h1{
position: relative;
font-size: 36px;
color: var(--primary-clr);
padding-top: 0;
margin-top: 0;
}
.small-header{
margin-bottom: 0;
padding-bottom: 0;
font-size: 12px;
}
.testimonials-container{
position: relative;
display: flex;
align-items: stretch;
}
.testimonials-container .testimonial-card{
padding: 20px;
}
.testimonial-card .test-card-body{
background-color: #fff;
gap: 15px !important;
box-shadow: 2px 2px 20px rgba(0,0,0,0.12);
padding: 20px;
flex-grow: 1; /* allows body to take up remaining space */
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 200px;
width: 320px;
color: #000;
}
.test-card-body .quote{
display: flex;
align-items: center;
}
.test-card-body .quote i{
font-size: 45px;
color: #fbae43;
margin-right: 20px;
}
.test-card-body .quote h2{
color: #000;
}
.test-card-body p{
margin: 10px 0px 15px;
font-size: 16px;
line-height: 1.5;
color: #000;
}
.test-card-body .ratings{
margin-top: 0;
margin-bottom: 0 !important;
}.test-card-body .ratings i{
font-size: 17px;
color: #263a80;
cursor: pointer;
}
.testimonial-card .profile{
display: flex;
align-items: center;
margin-top: 0;
background-color: #263a80;
position: relative; /* Required for absolutely positioning .profile-desc */
padding: 20px;
}
.profile .profile-image{
width: 55px;
height: 55px;
border-radius: 50%;
overflow: hidden;
margin-right: 15px;
}
.profile .profile-desc {
position: absolute; /* Position the description at the bottom */
bottom: 20px; /* Adjust this to set the distance from the bottom */
left: 20px; /* Optional: set padding from the left */
background: rgba(255, 255, 255, 0.8); /* Light background to make it legible */
padding: 10px 15px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Soft shadow */
}
.profile-desc span:nth-child(1) {
font-size: 20px;
font-weight: bold;
color: #000;
}
.profile-desc span:nth-child(2) {
font-size: 15px;
color: #000;
}
/* Ensure the profile image inside .profile is round */
.profile .profile-image img{
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
.owl-dots{
margin-top: 15px;
}
.owl-dots .owl-dot span{
background-color: #000 !important;
padding: 6px !important;
}
.owl-dot.active span{
background-color: #fbae43 !important;
}
/*---------offsite-slider-------*/
.multi-slider-section {
padding: 10px 0; /* reduced from 60px */
padding-top: 10px;
background-color: #fff;
text-align: center;
 }
.multi-slider-section h1{
font-size: 35px;
font-weight: bold;
padding-bottom: 20px;
}
.yellow-heading{
color: #fbae43;
font-weight: bold;
}
.slider-heading {
font-size: 32px; /* slightly smaller */
margin-bottom: 30px; /* reduced from 40px */
color: #222;
}
.swiper.multiSwiper {
padding-bottom: 0px; /* reduced space below slider */
}
.swiper-slide {
display: flex;
justify-content: center;
align-items: center;
padding: 0 5px; /* small internal padding to reduce space between slides */
}
.slide-box {
position: relative;
overflow: hidden;
border-radius: 0;
width: 100%;
height: 320px; /* reduced height */
margin: 0; /* ensure no margin is added */
}
.slide-box img {
width: 100%;
height: 100%;
object-fit: cover;
filter: brightness(100%);
}
.slide-box h1 {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
margin: 0;
padding: 10px 15px; /* reduced padding */
background: rgba(0, 0, 0, 0.6);
color: white;
font-size: 18px; /* slightly smaller */
font-weight: 600;
box-sizing: border-box;
}
.blueline1{
height: 20px;
background-color: #263a80;
padding-bottom: 0;
margin-bottom: 0;
}
/*-----footer-------*/
.footer {
background-color: #fff;
color: #000;
font-family: 'Poppins', sans-serif;
padding: 60px 20px 20px;
}
.footer .container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1400px;
margin: auto;
}
.footer-column {
flex: 1 1 250px;
margin: 20px;
}
.footer-logo {
width: 250px;
padding-top: 0;
margin-bottom: 20px;
}
.footer-column p {
font-size: 14px;
line-height: 1.6;
}
.footer-column h3 {
font-size: 18px;
margin-bottom: 15px;
font-weight: 600;
}
.footer-column ul {
list-style: none;
padding: 0;
}
.footer-column ul li {
margin-bottom: 10px;
font-size: 14px;
}        
.footer-column ul li a {
color: #000;
text-decoration: none;
transition: color 0.3s ease;
}       
.footer-column ul li a:hover {
color: #fbae43;
}        
.social-icons a {
color: #000;
font-size: 20px;
margin-left: 25px;
margin-right: 10px;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: #fbae43;
}        
.footer-bottom {
text-align: center;
padding: 10px 0;
background: #263a80;
color: #fff;
font-size: 14px;
margin-top: 20px;
}
.footer-bottom a{
color: white;
text-decoration: none;
}
.footer-bottom a:visited {
color: yellow;
}
.footer-bottom a:hover {
text-decoration: underline;
} 