*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Mulish', sans-serif;
}

/* ============================= HEADER ======================================== */
.top-header{
    background:#41484E;
    padding: 15px 100px;
    font-family: 'Mulish', sans-serif;
}

.header-right{
    display:flex;
    justify-content:space-between; 
    align-items:center;
    flex-wrap:wrap;
    gap: 20px;
}

.contact-info{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.contact-info a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    display:flex;
    font-weight:500;
    align-items:center;
    gap:6px;
}

.contact-info i{
    color:#fff;
}

.social-icons{
    display:flex;
    gap: 12px;
}

.social-icons a{
    width:35px;
    height:35px;
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    border: 1px solid #727272;
    border-radius: 6px;
    text-decoration:none;
    font-weight:700;
}

.social-icons i{
    color:#D5AC63; 
    font-size:16px;
}

/* ====================== NAVBAR ============================= */
.navbar{
    width:100%;
    position: relative;
    z-index: 9999;
    background:#fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 30px 45px;
    border-bottom: 1px solid #eee;
    font-family:'Mulish', sans-serif;
}

.nav-container{
    max-width: 100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-family: 'Mulish', sans-serif;
    font-size:22px;
    font-weight:800;
}

.logo-grey{
    color:#777;
}

.logo-orange{
    color:#D5AC63;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap: 50px;
}

.nav-menu a{
    text-decoration:none;
    color:#777;
    font-size:16px;
    font-family: 'Mulish', sans-serif;
    font-weight:600;
    position:relative;
    padding-bottom:5px;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#D5AC63;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#D5AC63;
}

.nav-menu a:hover::after{
    width:100%;
}

.menu-toggle{
    display:none;
    font-size:22px;
    color:#333;
    cursor:pointer;
}

/* ========================== Sticky Vertical Enquiry Button ============================ */
.sticky-enquiry{
    position:fixed;
    right: 25px;
    top:30%;
    transform:translateY(-50%) rotate(-90deg);
    transform-origin:right center;
    background:#1e73be;
    color:#fff;
    padding:12px 30px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    border-radius:6px 6px 0 0;
    z-index:999;
    letter-spacing:1px;
}

.sticky-enquiry:hover{
    background:#155a99;
}

/* ================== Sticky Call Button ===================== */
.call-sticky{
    position:fixed;
    right:20px;
    bottom:50px;
    width:60px;
    height:60px;
    background:#25d366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    z-index:9999;
    text-decoration:none;
}

.call-sticky i{
    animation: phone-rotate 1s infinite;
    position:relative;
    z-index:2;
}

.call-ring{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(37,211,102,0.46);
    animation:ring 1.8s infinite;
    z-index:0;
}

@keyframes phone-rotate{
    0%{transform:rotate(0deg);}
    20%{transform:rotate(20deg);}
    40%{transform:rotate(-20deg);}
    60%{transform:rotate(20deg);}
    80%{transform:rotate(-20deg);}
    100%{transform:rotate(0deg);}
}

@keyframes ring{
    0%{
        transform:scale(1);
        opacity:0.7;
    }
    100%{
        transform:scale(2.8);
        opacity:0;
    }
}



/* ============================= CAROUSEL ==================================== */
.hero-carousel{
    width:100%;
    position:relative;
    font-family:'Mulish', sans-serif;
}

.carousel{
    position:relative;
    height: 95vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:#fff;
    padding:20px;
}

.content h5{
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:10px;
    color:#ddd;
}

.content h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    padding:12px 28px;
    background:#D5AC63;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:4px;
}

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:35px;
    color:#fff;
    cursor:pointer;
    padding:10px;
    z-index:10;
    user-select:none;
}

.arrow.left{ left:20px; }
.arrow.right{ right:20px; }

/* ================= FEATURES SECTION ================= */
.feature-section{
    position:relative;
    margin-top:-60px;   
    z-index:20;
}

.feature-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    padding:0 50px;
}

.feature-box{
    background:#fff;
    display:flex;
    align-items:center;
    gap:15px;
    padding: 30px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.feature-box img{
    width: 65px;
    height:auto;
}

.feature-box p{
    margin:0;
    font-size: 20px;
    font-weight: 900;
    color:#333;
}

/* ================= ABOUT US ================= */
.about-section{
    margin-top: 7rem;
    padding: 50px 110px;
    font-family:'Mulish', sans-serif;
}

.about-container{
    max-width: 100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-content h5{
    color:#D5AC63;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.about-content h2{
    font-size: 45px;
    font-weight:800;
    margin-bottom:20px;
    color:#222;
}

.about-content p{
    font-size: 16px;
    line-height:1.7;
    color:#555;
    margin-bottom:15px;
}

.about-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 30px;
    background:#41484E;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:4px;
}

.about-btn:hover{
    background: #9e7f48;
}

.about-image img{
    width: 100%;
    border-radius:8px;
}

/* ================= OUR SPECIALITIES ================= */
.specialities-section{
    background:#F7FAFB;
    padding:80px 20px;
    font-family:'Mulish', sans-serif;
}

.specialities-container{
    max-width:1200px;
    margin:auto;
}

.specialities-heading{
    text-align:center;
    margin-bottom:50px;
}

.specialities-heading h5{
    color:#D5AC63;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:8px;
    font-family:'Mulish', sans-serif;
}

.specialities-heading h2{
    font-size:40px;
    font-weight:800;
    font-family:'Mulish', sans-serif;
    color:#41484E;
}

.specialities-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.speciality-box{
    background:#41484E;
    padding:0 0 5px;
    border-radius:8px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.speciality-box:hover{
    background: #9e7f48;
}

.speciality-box img{
    width:100%;
    height: 250px;
    object-fit: cover;
    border-radius:6px;
    margin-bottom:20px;
}

.speciality-box h3{
    font-family:'Mulish', sans-serif;
    font-size: 23px;
    font-weight:800;
    color:#ffffff;
    margin-bottom:12px;
    position:relative;
    display:inline-block;
}

.speciality-box h3::after{
    content:"";
    position:absolute;
    left:40px;
    bottom:-10px;
    width:60%;
    height:2px;
    background:#D5AC63;
}

.speciality-box p{
    font-family:'Mulish', sans-serif;
    font-size:15px;
    color:#ffffff;
    line-height:1.6;
    padding: 1.3rem;
}

/* ================= Banner Section ================= */
.banner-section{
    position:relative;
    background:url("../images/p3.jpeg") center/cover no-repeat;
    min-height:65vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 20px;
    font-family:'Mulish', sans-serif;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75); /* opacity */
}

.banner-content{
    position:relative;
    max-width:800px;
    color:#fff;
    z-index:2;
}

.banner-logo{
    color:#D5AC63;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.banner-content h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:15px;
}

.banner-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:25px;
    color:#f1f1f1;
}

.banner-btn{
    display:inline-block;
    background:#41484E;
    color:#fff;
    padding:12px 32px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

.banner-btn:hover{
    background:#D5AC63;
}

/* =================== OUR PROJECTS =================== */
.projects {
  padding: 100px 7%;
  background: #F7FAFB;
}

.projects .section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
  text-align: center;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.project-card {
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card img {
  width: 100%;
  height: 250px;
  display: block;
}

/* =================== FOOTER SECTION =================== */
.footer {
  background: #41484E;
  color: #fff;
  padding: 80px 5% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #D5AC63;
  margin-top: 8px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #D5AC63;
}

.footer-column.contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-column.contact i {
  color: #D5AC63;
  font-size: 1rem;
}

.footer-column.contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column.contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
}



/* ==================== Responsive Screens ============================*/
@media(max-width: 1024px){
    .top-header{
    background:#192E3F;
    padding: 15px 40px;
    font-family: 'Mulish', sans-serif;
}

.about-section{
    padding: 30px 30px;
}

.feature-grid{
    grid-template-columns:repeat(2, 1fr);
}

.specialities-grid{
    grid-template-columns:repeat(2, 1fr);
}

.speciality-box{
    padding:0 0 4px;
}

.speciality-box img{
    width:100%;
    height: 300px;
    object-fit: cover;
    border-radius:6px;
    margin-bottom:20px;
}

.banner-content h2{
        font-size:34px;
}

.projects {
    padding: 80px 2.5%;
}

.projects .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.projects-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-card img {
  height: 250px;
}

.footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer {
    padding: 60px 6% 25px;
}

.footer-column h3 {
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.9rem;
}

}

@media(max-width:768px){
.header-right{
    justify-content:center; 
    flex-direction:column;
    gap:15px;
}
.contact-info{
    justify-content:center;
    text-align:center;
}

.navbar{
    padding: 20px 15px;
}

.logo{
    font-size:18px;
}
.menu-toggle{
    display:block;
}
.nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
    border-top: 1px solid #eee;
}

.nav-menu.active{
    display:flex;
}

.carousel{
    height:80vh;
}

.content h2{
    font-size:28px;
}

.about-section{
   margin-top: 4rem;
   padding: 30px 20px;
   font-family:'Mulish', sans-serif;
}

.about-container{
    grid-template-columns:1fr;
    gap:40px;
}

.banner-section{
    min-height:55vh;
}

.banner-content h2{
    font-size:28px;
}

.banner-content p{
    font-size:15px;
}

}

@media(max-width:480px){
.top-header{
    display: none;
}

.contact-info a{
    font-size:12px;
}

.social-icons a{
    width:32px;
    height:32px;
}

.navbar{
    padding: 20px 10px;
}

.logo{
    font-size: 14px;
}

.carousel{
    height:60vh;
}

.content{
    width:100%;
    padding:0 45px;   
}

.content h5{
    white-space: nowrap;
    font-size:12px;
}

.content h2{
    font-size:22px;
}

.btn{
    padding:10px 22px;
    font-size:14px;
}

.arrow{
    font-size:20px;
    padding: 5px;
}

.feature-section{
    margin-top:50px;
}

.feature-grid{
    grid-template-columns:1fr;
    padding: 0 20px;
}

.feature-box{
    justify-content:center;
    text-align:center;
}

.about-section{
    margin-top: 0;
    padding:50px 15px;
}

.about-content h2{
    font-size:22px;
}

.about-content p{
    font-size:14px;
}

.specialities-grid{
    grid-template-columns:1fr;
}

.specialities-section{
    padding:60px 15px;
}

.specialities-heading h2{
    font-size:26px;
}

.speciality-box img{
    height:300px;
}

.banner-section{
    min-height:50vh;
    padding:30px 15px;
}

.banner-logo{
    font-size:12px;
}

.banner-content h2{
    font-size:22px;
}

.banner-content p{
    font-size:14px;
}

.banner-btn{
    padding:10px 26px;
    font-size:14px;
}

.projects {
  padding: 60px 4%;
}

.projects .section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.projects-container {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.project-card img {
  height: 300px;
}

.footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer {
    padding: 50px 5% 20px;
}

.footer-column h3 {
    font-size: 1.1rem;
    display: inline-block;
}
  
.footer-bottom p {
    font-size: 0.85rem;
}

.sticky-enquiry{
        right:20px;
        font-size:12px;
        padding:10px 20px;
    }
}
