*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}
html, body{
overflow-x:hidden;
width:100%;
}
/* NAVBAR */
:root{
  --header-height: 110px;
}

body{
  padding-top: var(--header-height);
}

/* NAVBAR */
#navbar{
position:fixed;
top:40px; /* only initial */
left:0;
width:100%;
z-index:1000;
background:white;
transition:top 0.3s ease;
}

.navbar-scrolled{
box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

/* CONTAINER */
.nav-container{
width:100%;
max-width:1200px;
margin:0 auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 16px;
}

/* LOGO */

.logo img{
height:60px;
display:block;
}
.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}
/* NAV LINKS */

.nav-links{
display:flex;
list-style:none;
gap:40px;
align-items:center;
}

.nav-links a{
text-decoration:none;
font-weight:700;
position:relative;
transition:0.3s;
color:#0282a5;
text-transform:uppercase;
}

/* HOVER */

.nav-links a:hover{
color:#ff4d4f;
}

.nav-links > li > a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#ff4d4f;
transition:0.3s;
}

.nav-links > li > a:hover::after{
width:100%;
}



/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}




@media (max-width:768px){



/* NAV CONTAINER */

.nav-container{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 16px;
}

/* LOGO */

.logo img{
height:45px;
}

/* MENU ICON */

.menu-toggle{
display:block;
font-size:26px;
cursor:pointer;
}

/* NAV LINKS */

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:flex-start;
gap:18px;
padding:20px;
display:none;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* ACTIVE MENU */

.nav-links.active{
display:flex;
}

/* NAV LINK STYLE */

.nav-links a{
color:black !important;
font-size:16px;
width:100%;
}

/* DROPDOWN */
}


/* ===== TOP BAR ===== */

.top-bar{
position:fixed;
top:0;
left:0;
width:100%;
height:40px; /* FIXED HEIGHT */
background:#0282a5;
color:#ffffff;
z-index:1001;

display:flex;
align-items:center;

transition:transform 0.3s ease;
}
.top-container{
width:100%;
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;

height:100%; /* IMPORTANT */
padding:0 16px; /* REMOVE vertical padding */
}

.top-left span{
margin-right:20px;
display:inline-flex;
align-items:center;
gap:6px;
}

.top-right a{
color:white;
margin-left:15px;
transition:0.3s;
}

.top-right a:hover{
color:  #ff4d4f;;
}
.nav-cta{
background: #ff4d4f;;
color:#fff;
padding:10px 22px;
border-radius:4px;
font-size:13px;
font-weight:700;
text-decoration:none;
transition:0.3s;
}

.nav-cta:hover{
background:#0282a5;
transform:translateY(-2px);
}

@media (max-width:768px){

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
}

/* keep CTA visible */
.nav-cta{
display:inline-block;
font-size:12px;
padding:8px 14px;
}

/* reduce logo size */
.logo img{
height:45px;
}

}

@media (max-width:768px){

#navbar{
top:40px; /* match EXACT topbar height */
}
.top-bar{
height:40px; /* slightly small */
font-size:11px;
}

/* LEFT SIDE (PHONE + EMAIL) */
.top-left{
display:flex;
align-items:center;
gap:8px;
overflow:hidden;
}

/* hide email for clean look */
.top-left span:nth-child(2){
display:none;
}

/* RIGHT SIDE ICONS */
.top-right{
display:flex;
align-items:center;
gap:8px;
}

.top-right a{
margin:0;
font-size:12px;
}

}















/* ABOUT HERO SECTION */

.about-hero{
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: #000;
}

/* IMAGE */

.about-hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   object-position: center bottom;
}

/* OVERLAY */

.about-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.75)
    );
    z-index: 1;
}

/* CONTENT */

.about-hero-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 650px;
    color: white;
}

.about-hero-content span{
    display: inline-block;
    color: #ff4d4f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-hero-content h1{
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.about-hero-content p{
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

/* BUTTON */

.about-hero-btn{
    display: inline-block;
    padding: 15px 34px;
    background: #ff4d4f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s ease;
}

.about-hero-btn:hover{
    background: #0282a5;
    transform: translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

.about-hero{
    height: 60vh;
}

.about-hero-overlay{
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.35)
    );
}

.about-hero-content{
    left: 6%;
    width: 88%;
}

.about-hero-content span{
    font-size: 12px;
    margin-bottom: 12px;
}

.about-hero-content h1{
    font-size: 42px;
    margin-bottom: 15px;
}

.about-hero-content p{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-hero-btn{
    padding: 13px 28px;
    font-size: 14px;
}

}



















/* ================= CONTACT SECTION ================= */
:root {
    --vm-red: #ff4d4f;
    --vm-yellow:white;
    --dark-blue: #ff4d4f;
}

.contact-section {
    padding: 50px 20px;
    background: #f8fafc;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 0; /* Removing gap to make them look unified */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

/* Equal Height Logic */
.contact-left, .contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ================= LEFT SIDE (Dark Style) ================= */
.contact-left {
    background: #0282a5;
    padding: 50px;
    color: #fff;
}

.contact-left h3 {
    color: var(--vm-yellow);
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    color: var(--vm-yellow);
    font-size: 18px;
    margin-top: 4px;
}

.info-item span {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.map-container {
    margin-top: auto; /* Pushes map to bottom */
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================= RIGHT SIDE (Form) ================= */
.contact-right {
    padding: 50px;
    background: #ffffff;
}

.contact-right h3 {
    color:#0282a5;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #94a3b8;
    font-size: 14px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f1f5f9;
    font-size: 14px;
    transition: 0.3s;
}

.input-group textarea {
    height: 120px;
    resize: none;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--vm-red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(230, 29, 36, 0.1);
}

/* BUTTON */
.contact-right button {
    width: 100%;
    padding: 15px;
    background: var(--vm-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.contact-right button:hover {
    background: rgb(2, 130, 166);
    transform: translateY(-3px);
}

.success-msg {
    display: none;
    margin-top: 15px;
    color: #10b981;
    text-align: center;
    font-weight: 600;
}
/* Validation Tick Styling */
.validation-tick {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #10b981 !important; /* Green color */
    font-size: 14px;
    display: none; /* Hidden by default */
    transition: 0.3s;
}

/* When input is valid, show tick */
.input-group.valid .validation-tick {
    display: block;
}

/* Change border color for valid inputs */
.input-group.valid input,
.input-group.valid textarea {
    border-color: #10b981;
    background: #f0fff4;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        margin: 0 10px;
    }
    .contact-left, .contact-right {
        padding: 35px 25px;
    }
    .map-container {
        height: 250px;
        margin-top: 20px;
    }
}











.footer {
  background: #0282a5;
  color: #fff;
  padding: 60px 20px 20px;
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 220px;
  margin-bottom: 15px;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 900;
  color: white;
  font-size: 20px;
}

/* TEXT */
.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
  opacity: 0.9;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff4d4f;
  padding-left: 5px;
}

/* PHONE */
.phone {
  margin-top: 10px;
  font-weight: 600;
}

/* SOCIAL */
.socials a {
  display: inline-block;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  color: white;
  transition: 0.3s;
}

.socials a:hover {
  background: #ff4d4f;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width:768px){
.footer-container {
  grid-template-columns: 1fr;
  gap: 25px;
  text-align: left;
}

.socials {
  justify-content: left;
}
}








/* WhatsApp Button */

.float-whatsapp{
position:fixed;
bottom:50px;
right:20px;
text-decoration: none;
width:55px;
height:55px;

background:#25D366;
color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:26px;

box-shadow:0 8px 20px rgba(0,0,0,0.25);

z-index:999;

animation:whatsappPulse 2s infinite;
}

/* Phone Button */

.float-phone{
position:fixed;
bottom:20px;
right:20px;
text-decoration: none;
width:55px;
height:55px;

background:#057fcc;
color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:22px;

box-shadow:0 8px 20px rgba(0,0,0,0.25);

z-index:999;

animation:phonePulse 2s infinite;
}

/* Hover */

.float-whatsapp:hover,
.float-phone:hover{
transform:scale(1.1);
}

/* Animations */

@keyframes whatsappPulse{

0%{box-shadow:0 0 0 0 rgba(37,211,102,.6)}

70%{box-shadow:0 0 0 15px rgba(37,211,102,0)}

100%{box-shadow:0 0 0 0 rgba(37,211,102,0)}

}

@keyframes phonePulse{

0%{box-shadow:0 0 0 0 rgba(5,127,204,.6)}

70%{box-shadow:0 0 0 15px rgba(5,127,204,0)}

100%{box-shadow:0 0 0 0 rgba(5,127,204,0)}

}


/* HIDE PHONE IN DESKTOP */

.float-phone{
display:none;
}

/* MOBILE VIEW */

@media(max-width:768px){

.float-whatsapp{
bottom:95px;
}

/* SHOW PHONE ICON IN MOBILE */
.float-phone{
display:flex;   /* IMPORTANT FIX */
bottom:20px;
}

}
