*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar{
  background:#0b3c66;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 25px;
  font-size:14px;
}

.social-icons i{
  margin-right:12px;
  cursor:pointer;
}

/* ===== HEADER ===== */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 25px;
  background:#fff;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.logo img{
  height:55px;
}

.nav a{
  margin-left:25px;
  text-decoration:none;
  color:#0b3c66;
  font-weight:600;
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* ===== HERO SLIDER ===== */
.hero{
  position:relative;
  width:100%;
  height:520px;
  overflow:hidden;
}

.slides{
  position:relative;
  width:100%;
  height:100%;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.slide.active{
  opacity:1;
}

/* ===== MARQUEE ===== */
.marquee-wrapper{
  position:absolute;
  bottom:0;
  width:100%;
  background:#0b3c66;
  overflow:hidden;
  padding:14px 0;
}

.marquee-text{
  color:#fff;
  font-size:22px;
  font-weight:600;
  white-space:nowrap;
  display:inline-block;
  animation:marquee 15s linear infinite;
}

@keyframes marquee{
  0%{ transform:translateX(100%); }
  100%{ transform:translateX(-100%); }
}

/* ===== FLOAT BUTTONS ===== */
.float-btn{
  position:fixed;
  right:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  z-index:999;
}

.call{
  bottom:95px;
  background:#0b3c66;
}

.whatsapp{
  bottom:25px;
  background:#25d366;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .top-bar{
    flex-direction:column;
    text-align:center;
    font-size:12px;
  }

  .nav{
    position:absolute;
    top:80px;
    right:0;
    background:#fff;
    width:200px;
    display:none;
    flex-direction:column;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
  }

  .nav a{
    padding:12px;
    border-bottom:1px solid #eee;
    margin:0;
  }

  .menu-toggle{
    display:block;
  }

  .hero{
    height:320px;
  }

  .marquee-text{
    font-size:16px;
  }
}



@media (max-width:768px){

  /* ===== TOP BAR ===== */
  .top-bar{
    flex-direction:column;
    text-align:center;
    font-size:12px;
    padding:8px 10px;
    gap:6px;
  }

  .social-icons{
    display:flex;
    justify-content:center;
  }

  .contact-info{
    line-height:1.6;
  }

  /* ===== HEADER ===== */
  .header{
    padding:10px 15px;
  }

  .logo img{
    height:45px;
  }

  /* ===== MOBILE MENU ===== */
  .menu-toggle{
    display:block;
    font-size:22px;
    color:#0b3c66;
  }

  .nav{
    position:absolute;
    top:100%;
    right:0;
    width:220px;
    background:#fff;
    display:none;
    flex-direction:column;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    z-index:999;
  }

  .nav a{
    padding:14px;
    margin:0;
    border-bottom:1px solid #eee;
    text-align:left;
  }
}



/* ===== MOBILE MENU TOGGLE ===== */
@media (max-width:768px){

  .menu-toggle{
    display:block;
    font-size:22px;
    cursor:pointer;
    color:#0b3c66;
  }

  .nav{
    position:absolute;
    top:100%;
    right:0;
    width:220px;
    background:#fff;
    display:none;
    flex-direction:column;
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
    z-index:999;
  }

  .nav a{
    padding:14px;
    margin:0;
    border-bottom:1px solid #eee;
  }
}


/* Services section */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#071b2f;
    color:#fff;
}

/* SECTION */
.services{
    padding:40px 10px;
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.services h2{
    text-align:center;
    font-size:32px;
    margin-bottom:60px;
    color:black;
}

/* GRID */
.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
/* CARD */
.card{
    background:#0a2f55;
    border-radius:6px;
    overflow:hidden;
    min-height:350px;  /* Increase overall height */
    padding:20px;      /* Add some inner spacing to make it taller */
    transition:0.3s;   /* Smooth hover effect if needed */
    min-width:600px;    /* Set a minimum width to make the card wider */
}    


/* ===== CARD MOBILE RESPONSIVE ===== */
@media (max-width: 768px){
    .card{
        min-width: 100%;     /* full width on mobile */
        min-height: auto;    /* auto height for small screens */
        padding: 15px;       /* slightly reduced padding */
        margin-bottom: 20px; /* spacing between cards */
    }
}

@media (max-width: 480px){
    .card{
        min-width: 100%;
        padding: 12px;
        border-radius: 4px;  /* cleaner look on small screens */
    }
}


.img-box{
    position:relative;
    cursor:pointer;
}

.img-box img{
    width:100%;
    height:60px;
    object-fit:cover;
    display:block;
}

/* PLUS ICON */
.plus{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:50px;
    color:#fff;
    background:rgba(0,0,0,0.6);
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.3s;
}

.img-box:hover .plus{
    opacity:1;
}

.card h3{
    text-align:center;
    padding:15px;
    background:#063763;
}

/* POPUP */
.popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:1000;
}

.popup img{
    max-width:90%;
    max-height:90%;
    border-radius:6px;
}

.popup span{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    cursor:pointer;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .service-grid{
        grid-template-columns:1fr;
    }
    .img-box img{
        height:200px;
    }
}



/*About section*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#fff;
    
}

/* ABOUT SECTION */
.about-section{
    display:flex;
    gap:40px;
    padding:40px;
    max-width:1300px;
    margin:auto;
}

/* LEFT */
.left{
    flex:1;
}

.tabs{
    display:flex;
    border-bottom:2px solid #ddd;
    margin-bottom:20px;
}

.tab{
    padding:12px 20px;
    font-weight:bold;
    color:black;
}

.tab.active{
    background:#083a6b;
    color:#fff;
}

.left p{
    line-height:1.7;
    margin-bottom:25px;
    color:black
}

.why-us{
    display:flex;
    gap:15px;
    color:black
}

.icon{
    width:45px;
    height:45px;
    background:#083a6b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* RIGHT */
.right{
    flex:1;
}

.right h2{
    font-size:32px;
    margin-bottom:20px;
}

/* IMAGE GRID */
.project-grid{
    display:grid;
    grid-template-columns:1fr 1fr; /* equal width */
    gap:15px;
}

/* IMAGE BOX */
.img-box{
    height:350px; /* equal height */
}

.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:4px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .about-section{
        flex-direction:column;
    }
}

@media(max-width:600px){
    .project-grid{
        grid-template-columns:1fr;
    }

    .img-box{
        height:220px;
    }
}



/* PROJECT GRID */
.project-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:15px;
    width:100%;
}

/* IMAGE BOX */
.img-box{
    width:100%;
    height:320px;        /* DESKTOP HEIGHT */
    overflow:hidden;
    border-radius:8px;
}

/* IMAGE */
.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;   /* Keeps aspect ratio */
}

/* TABLET */
@media(max-width:1024px){
    .img-box{
        height:260px;
    }
}

/* MOBILE */
@media(max-width:768px){
    .project-grid{
        grid-template-columns:1fr;
    }

    .img-box{
        height:220px;
    }
}




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

/* TOP CTA BAR */
.footer-top{
    background:linear-gradient(135deg,#0b3c66,#184f7f);
    color:#fff;
    padding:18px 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.footer-top .msg{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
    font-weight:600;
}

.footer-top .msg span{
    font-size:22px;
}

.footer-top button{
    background:#ffdf2b;
    border:none;
    padding:10px 22px;
    font-weight:bold;
    cursor:pointer;
}

/* FOOTER */
.footer{
    background:#222;
    color:#ddd;
    padding:40px 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.footer h3{
    color:#fff;
    margin-bottom:15px;
}

.footer p{
    font-size:14px;
    line-height:1.7;
}

/* CONTACT */
.contact-item{
    display:flex;
    gap:10px;
    margin-bottom:12px;
    font-size:14px;
}

/* MAP */
.map iframe{
    width:100%;
    height:220px;
    border:0;
}

/* READ MORE */
.read-more{
    display:inline-block;
    margin-top:15px;
    background:#083a6b;
    color:#fff;
    padding:10px 18px;
    text-decoration:none;
    font-size:14px;
}

/* COPYRIGHT */
.footer-bottom{
    background:#1a1a1a;
    color:#aaa;
    text-align:center;
    padding:15px;
    font-size:13px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .footer-top{
        flex-direction:column;
        text-align:center;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .map iframe{
        height:200px;
    }
}


/*container*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#fff;
    color:#fff;
}

/* MAIN WRAPPER */
.container{
    padding:40px 6%;
    display:flex;
    gap:30px;
}

/* LEFT CONTENT */
.left{
    flex:3;
}

/* IMAGE GRID */
.image-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:30px;
}

.image-grid img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:6px;
}

/* HEADINGS */
.left h1{
    font-size:30px;
    margin-bottom:15px;
    color:black;
}

.left h2{
    font-size:24px;
    margin:30px 0 10px;
    color:black;
}

.left p{
    font-size:15px;
    line-height:1.7;
    color:#666;
}

/* RIGHT SIDEBAR */
.right{
    flex:1;
}

/* LOCATION LIST */
.locations{
    background:#f7f7f7;
    padding:20px;
    border-radius:6px;
    margin-bottom:25px;
}

.locations ul{
    list-style:none;
}

.locations li{
    padding:12px 0;
    border-bottom:1px solid #ddd;
    font-weight:600;
    color:black;
}

/* CONTACT FORM */
.form-box{
    background:#f7f7f7;
    padding:20px;
    border-radius:6px;
}

.form-box h3{
    font-size:22px;
    margin-bottom:15px;
    color:black;
}

.form-box label{
    font-size:14px;
    display:block;
    margin:10px 0 5px;
    color:black
}

.form-box input,
.form-box textarea,
.form-box select{
    width:100%;
    padding:8px;
    border:1px solid #ccc;
    border-radius:4px;
}

.form-box textarea{
    resize:none;
    height:80px;
}

.form-box button{
    margin-top:15px;
    width:100%;
    padding:10px;
    background:#002f5f;
    color:#fff;
    border:none;
    border-radius:4px;
    font-weight:bold;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
    .container{
        flex-direction:column;
    }

    .image-grid{
        grid-template-columns:1fr;
    }

    .image-grid img{
        height:220px;
    }
}



/* HEADER */
.header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 6%;
    background:#fff;
    position:relative;
}

/* NAV */
.nav{
    display:flex;
    align-items:center;
    gap:25px;
}

/* LINKS */
.nav a{
    text-decoration:none;
    color:#000;
    font-size:15px;
    font-weight:600;
    position:relative;
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

.drop-btn{
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
}

/* DROPDOWN MENU */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:210px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    border-radius:6px;
    display:none;
    flex-direction:column;
    z-index:1000;
}

.dropdown-menu a{
    padding:12px 16px;
    font-size:14px;
    font-weight:500;
    color:#333;
}

.dropdown-menu a:hover{
    background:#0b2f55;
    color:#fff;
}

/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-menu{
    display:flex;
}

/* MENU TOGGLE (MOBILE ICON) */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:15px 6%;
        display:none;
    }

    .nav.active{
        display:flex;
    }

    .nav a,
    .drop-btn{
        width:100%;
        padding:10px 0;
    }

    .dropdown-menu{
        position:static;
        box-shadow:none;
        width:100%;
        display:none;
        margin-left:15px;
    }

    .dropdown.active .dropdown-menu{
        display:flex;
    }
}



/* ================= SERVICES SECTION MOBILE RESPONSIVE ================= */
@media(max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr 1fr; /* 2 cards per row on tablets */
        gap: 15px;
    }

    .card .img-box img {
        height: 200px; /* smaller image for mobile */
    }
}

@media(max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr; /* 1 card per row on phones */
        gap: 10px;
    }

    .card {
        padding: 15px;
        min-height: auto; /* adjust height for smaller screen */
    }

    .card .img-box img {
        height: 180px; /* reduce image height */
    }

    .popup img {
        max-width: 90%;
        max-height: 70%; /* fit popup on small screen */
    }

    .popup span {
        top: 10px;
        right: 15px;
        font-size: 30px; /* smaller close button */
    }
}



/* ===== MOBILE RESPONSIVE ===== */
@media(max-width: 992px){
    /* About section stacks vertically */
    .about-section{
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    /* Tabs full width */
    .tabs{
        flex-wrap: wrap;
    }

    .tab{
        flex: 1 1 100%;
        text-align: center;
        padding: 10px 0;
    }

    /* Navbar adjustments */
    .nav{
        display: none; /* hidden by default, toggle with menu */
        flex-direction: column;
        gap: 10px;
    }

    .menu-toggle{
        display: block;
        cursor: pointer;
    }
}

@media(max-width: 600px){
    /* Project grid single column */
    .project-grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .img-box{
        height: 220px;
    }

    /* Top bar adjustments */
    .top-bar{
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        text-align: center;
    }

    .top-bar .contact-info{
        font-size: 14px;
    }

    .login-btn{
        font-size: 12px;
        padding: 5px 10px;
    }

    /* Hero slides height */
    .hero .slides .slide{
        height: 250px; /* adjust as needed */
    }

    /* Footer adjustments */
    .footer-grid{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer .map iframe{
        width: 100%;
        height: 200px;
    }

    /* Floating buttons smaller */
    .float-btn{
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}





/* ===== ABOUT US SECTION ===== */
.about-us{
    padding: 60px 20px;
    background: #ffffff;
}

.about-container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* TEXT */
.about-text{
    flex: 1;
}

.about-text h2{
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
    text-align:center;
    
}

.about-text p{
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #000;
    margin-left:20px;
}

/* IMAGE */
.about-image{
    flex: 1;
}

.about-image img{
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

/* ===== TABLET ===== */
@media (max-width: 992px){
    .about-container{
        gap: 25px;
    }

    .about-text h2{
        font-size: 30px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 600px){
    .about-container{
        flex-direction: column;
        text-align: left;
    }

    .about-text h2{
        font-size: 26px;
    }

    .about-text p{
        font-size: 15px;
    }
}
