* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    /* font-family: "Open Sans", sans-serif; */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body p{
    font-size: 1rem;
}
.display-5 {
    font-weight: 700 !important;
}
.container {
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

/* LOGO */
#logo img {
    width: 160px;
    padding-left: 20px;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

/* Scroll effect */
header.scrolled {
    background-color: #fff;
}

header.scrolled .nav-links li a {
    color: #000;
}

header.scrolled .burger div {
    background-color: #000;
}

/* NAV */
#logo {
    float: left;
}

nav {
    float: right;
}

.nav-links {
    list-style: none;
    margin-top: 2rem;
}

.nav-links li {
    display: inline-block;
    margin-left: 20px;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    padding: 10px;
}

/* BURGER */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px;
}

/* HERO SLIDER */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 150% !important;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.slider .slide img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    /* object-position: center; */
	margin-top:-1rem !important;
}
.slide.active {
    opacity: 1;
}

/* IMAGE FIX */


/* OVERLAY */
.overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 750px;
}

.overlay h1 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
	margin-top:-9rem;
}

/* BUTTON */
.btn-custom {
    display: inline-block;
    margin-top: 20px;
    background: #e7b900;
    color: #fff;
	font-weight: 500;	
    padding: 15px 45px;
    border-radius: 30px;
    text-decoration: none;
}
.btn-custom:hover {
   background: #3cb815;
}

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;          /* equal width */
    height: 50px;         /* equal height */
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    background: rgba(38, 219, 5, 0.4);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;   /* makes it circle */
}

.prev { left: 20px; }
.next { right: 20px; }


/* Remove underline */
a {
    text-decoration: none;
}

/* Remove underline */
a {
    text-decoration: none;
}

/* Dropdown parent */
.dropdown {
    position: relative;
}

/* Dropdown box */
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    list-style: none;
    padding: 5px 0; /* overall top-bottom spacing */
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 200px !important; /* 👈 increased width */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Dropdown items */
.dropdown-menu li {
    padding: 0;
}

/* Links inside dropdown */
.dropdown-menu li a {
    color: #000;
    display: block;
    padding: 4px 0; /* 👈 your required padding */
}

/* Hover effect */
.dropdown-menu li a:hover {
    background: #f5f5f5;
}

/* Show on hover (desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile fix */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
    }
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        text-align: left;
        color: black;
    }

    .nav-links.active {
        display: block;
		margin-top: 0rem;
    }

    .nav-links li {
        display: block;
        margin: 10px 0;
        padding: 10px 20px;
		
    }

    .burger {
        display: block;
        float: right;
        margin-right: 12px;
    }

    .hero {
        height: 70vh;
    }

    .overlay {
        left: 5%;
    }

    .overlay h1 {
        font-size: 28px;
    }

    .slide img {
        object-position: center top; /* mobile crop fix */
    }
    .slide img {
    width: 100%;
    height: 64%;
    object-fit: cover;
    object-position: center;
	}
	.overlay .btn-custom {
		padding: 6px 16px !important;
		font-size: 13px !important;
		margin: 3px;
}
.slider .slide img {
    margin-top: 0rem !important;
}
.about {
    padding: 0;
}
}
/* SMALL MOBILE */
@media (max-width: 576px) {
    #logo img {
        width: 160px;
        margin-top: -3px;
    }
}

/* LARGE SCREEN */
@media (min-width: 1200px) {
    .overlay h1 {
        font-size: 4.5rem;
        font-family: "Lora", serif;
    }
}
/* ABOUT SECTION */
.about {
    padding: 50px 0;
    /* background: #f5f5f5; */
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h5 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 42px;
    font-family: "Lora", serif;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* BUTTON */
.about-content .btn-custom {
    margin-top: 20px;
    padding: 16px 50px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-content h5 {
        text-align: center;
    }

    /* .about-content p { */
        /* text-align: center; */
    /* } */

    /* .about-content { */
        /* text-align: center; */
    /* } */
}
.about_content_title{
  color: black !important;
  font-family: "Lora", serif  !important;
  font-weight:700;
}

/* SECTION BACKGROUND */
.container-fluid.bg-light {
    background: #f6f7f9 !important;
}

/* SECTION TITLE */
.section-header h1 {
    font-family: "Lora", serif;
    font-weight: 700;
    color: #111;
}

.section-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* FEATURE BOX */
.bg-white {
    background: #fff !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* SHADOW + HOVER EFFECT */
.bg-white:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ICON */
.bg-white img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* HEADING */
.bg-white h4 {
    font-family: "Lora", serif;
    font-weight: 600;
    color: #111;
}

/* TEXT */
.bg-white p {
    color: #666;
    line-height: 1.7;
}

/* SPACING */
.p-xl-5 {
    padding: 40px !important;
}

/* CENTER ALIGN */
.text-center {
    text-align: center;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .section-header h1 {
        font-size: 32px;
    }

    .bg-white {
        padding: 25px !important;
    }

    .bg-white h4 {
        font-size: 18px;
    }
}
.features{
    padding: 5rem 0;
}
.section-header {
    position: relative;
    padding-top: 20px;
}

/* GREEN LINE */
.section-header::before {
    content: "";
    width: 60px;
    height: 2.5px;
    background: #3CB815; /* green */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ORANGE LINE */
.section-header::after {
    content: "";
       width: 100px;
    height: 2.5px;
    background: #F65005; /* orange */
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 1.5rem !important;
    }
}
/* ================= PRODUCT SECTION ================= */

/* SECTION TITLE */
.section-header h1 {
    font-family: "Lora", serif;
    font-weight: 700;
    color: #111;
}

/* SMALL LINES ABOVE TITLE */
/* .section-header::before { */
    /* content: ""; */
    /* width: 60px; */
    /* height: 3px; */
    /* background: #3CB815; */
    /* position: absolute; */
    /* top: -15px; */
    /* left: 0; */
/* } */

/* .section-header::after { */
    /* content: ""; */
    /* width: 30px; */
    /* height: 3px; */
    /* background: #F65005; */
    /* position: absolute; */
    /* top: -8px; */
    /* left: 0; */
/* } */

/* PRODUCT CARD */
.product-item {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* FLIP EFFECT */
.product-item:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    backface-visibility: hidden;
}

/* FRONT */
.flip-card-front img {
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
}

.flip-card-front .bg-light {
    background: #fff !important;
}

/* BACK */
.flip-card-back {
    background: linear-gradient(135deg, #000000, #444444);
    transform: rotateY(180deg);
    padding: 20px;
}

/* TEXT */
.flip-card-back h5 {
    font-family: "Lora", serif;
    font-size: 20px;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.6;
}

/* BUTTON */
.flip-card-back .btn {
    background: #fff;
    color: #000;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
}

.flip-card-back .btn:hover {
    background: #f4b400;
    color: #fff;
}

/* ================= VISIT SECTION ================= */

.bg-primary {
    background: #e3b200 !important; /* yellow like screenshot */
}

/* TEXT */
.bg-primary h1 {
    font-family: "Lora", serif;
    font-weight: 700;
}

.bg-primary p {
    font-size: 15px;
    line-height: 1.7;
}

/* BUTTON RIGHT */
.btn-secondary {
    background: #ff4d00;
    border: none;
    color: #fff;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: #e64000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
	.flip-card-front,
.flip-card-back {
    height: 350px !important;
    
}
    .flip-card-front img {
        height: 100%;
    }

    .section-header::before,
    .section-header::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-header {
        text-align: center;
    }

    .col-md-5 {
        text-align: center !important;
    }
}
.product-item {
    height: 350px;   /* VERY IMPORTANT */
}

.flip-card-inner {
    height: 100%;
}

/* ===== VISIT OUR FIRM SECTION ===== */
.custom-yellow {
    background-color: #f4b400; /* yellow like image */
    padding: 80px 0;
}

/* HEADING */
.custom-yellow h1 {
    font-family: "Lora", serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

/* PARAGRAPH */
.custom-yellow p {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    max-width: 600px;
}

/* BUTTON */
.custom-yellow .btn-secondary {
    background-color: #ff3c00; /* red */
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

/* BUTTON HOVER */
.custom-yellow .btn-secondary:hover {
    background-color: #d63300;
    color: #fff;
}

/* RIGHT ALIGN */
.text-md-end {
    text-align: right;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .custom-yellow {
       padding: 50px 20px;
    }

    .custom-yellow h1 {
        font-size: 30px;
    }

    .text-md-end {
        text-align: center;
        margin-top: 20px;
    }
}
/* FULL WIDTH MAP */
.map-section {
    width: 100%;
    height: 450px;
    margin: 0;
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.footer {
  background: #000;
      color: #999999;

  padding-top: 60px;
  position: relative;
}

.logo-text {
  color: #7CFC00;
  font-weight: bold;
}

.footer-text {
  margin-top: 15px;
  line-height: 1.6;
}

.footer-title {
  color: #fff;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list i {
  margin-right: 10px;
    color: #999999;

}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons a {
  display: inline-flex;        /* better than inline-block */
  align-items: center;         /* vertical center */
  justify-content: center;     /* horizontal center */

  width: 38px;
  height: 38px;
  border-radius: 50%;          /* makes it circle */
/* border-color: #F7F8FC; */
  border: 1px solid #F7F8FC;
  color: #fff;
  font-size: 16px;
	text-decoration:none;
  transition: 0.3s;
}

.social-icons a i {
  line-height: 1;   
  text-decoration: none;           /* removes extra spacing issue */
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

.badges img {
  max-width: 150px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 15px 0;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.scroll-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #f1c40f;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #000;
  font-size: 18px;
  cursor: pointer;
}

.scroll-top:hover {
  background: #fff;
}
.logo-text img{
    width: 100px;
}

.top-lines {
    text-align: center;
    margin-bottom: 10px;
}

/* COMMON LINE STYLE */
.top-lines span {
    display: block;
    height: 2px;
}

/* TOP SMALL LINE */
.top-lines span:first-child {
    width: 60px;
    background: #2ecc71;
    margin: 0 auto;
}

/* BOTTOM BIG LINE */
.top-lines span:last-child {
    width: 90px;
    background: #e74c3c;
    margin: 5px auto 0;
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(100px); /* 👈 increase from 50px to 100px */
    transition: all 0.8s ease;    /* 👈 slower for smooth effect */
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top {
    position: fixed;   /* 👈 makes it sticky */
    bottom: 30px;
    right: 30px;
    /* background: #000; */
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;     /* 👈 hidden initially */
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: #3cb815;
}

/* show button */
.scroll-top.show {
    display: block;
}
.footer  h4{
	 font-family: "Lora", serif !important;
	 font-weight:500;
}