body{
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  
}





/* HEADER.PHP   */

.navbar {
    background: #000 !important;
    padding: 15px 0 !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}

/* LOGO */
.site-logo {
    height: 60px;
}

/* BRAND */
.navbar-brand {
    font-weight: 700;
    font-size: 22px;
    color: #fff !important;
}

.navbar-brand span {
    color: #379fe5;
}

/* NAV LINKS */
.navbar .nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #379fe5 !important;
}

/* ACTIVE */
.navbar .nav-link.active {
    color: #379fe5 !important;
}

/* BUTTON */
.quote-btn {
    background: #379fe5;
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
}

.quote-btn:hover {
    background: #379fe5;
}

/* TOGGLER */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* BODY FIX FOR FIXED NAVBAR */
body {
    padding-top: 80px;
}



.gap {
  margin-left: 10px; /* adjust the gap as needed */
}


.quote-btn {
    background: #25D366; /* WhatsApp green */
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
}

.quote-btn:hover {
    background: #1ebe5d;
}













/* HOME.PHP   */

.hero-section{
  height: 70vh;

  /* 🔥 MULTI-LAYER BACKGROUND (VINRA STYLE) */

  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('../../assets/uploads/2.webp') center/cover no-repeat;


  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

/* REMOVE OLD OVERLAY (optional) */
.overlay{
  display:none;
}

/* CONTENT */
.hero-section .content{
  color:#fff;
  z-index:2;
}

/* TEXT STYLE */
.hero-section h1{
  font-size:65px;
  font-weight:700;
  letter-spacing:1px;
  color:white;
}

.hero-section p{
  font-size:20px;
  margin-top:10px;
  color:#ddd;
}

/* BUTTON */
.hero-section .btn{
  border-radius:30px;
  padding:10px 25px;
}




.about-section{
  background:#f8f9fa;
}

.about-section img{
  border-radius:15px;
}

/* LIST */
.about-points{
  list-style:none;
  padding:0;
}

.about-points li{
  margin-bottom:10px;
  font-weight:500;
}









    /* SERVICES SECTION */
.services-section{
  background:#f8f9fa;
}

/* CARD */
.service-card{
  background:white;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
}

/* IMAGE */
.service-img{
  height:220px;
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.service-card:hover img{
  transform:scale(1.1);
}

/* CONTENT */
.service-content{
  padding:20px;
}

.service-content h5{
  font-weight:600;
  margin-bottom:10px;
}






/* PROCESS SECTION */
.process-section{
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
              url('../images/banner.jpg') center/cover no-repeat;
}

/* CARD */
.process-card{
  background: rgba(255,255,255,0.08);
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s;
  color: #fff;
  position: relative;
}

.process-card:hover{
  background: #379fe5;
  color: #000;
  transform: translateY(-10px);
}



.process-card p{
  color: rgba(255,255,255,0.85);  /* ✅ brighter text */
  font-size:14px;
}

/* TITLE COLOR */
.process-card h5{
  color:#fff;
}




/* STEP NUMBER */
.step-number{
  width: 50px;
  height: 50px;
  background: #379fe5;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 18px;
}

/* HOVER FIX */
.process-card:hover .step-number{
  background: #000;
  color: #379fe5;
}





















/* WHY SECTION */
.why-section{
  background:#f8f9fa;
}

/* CARD */
/* CARD FIX */
.why-card{
  background:#fff;
  padding:30px 20px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.3s;

  height:100%;              /* 🔥 equal height */
  display:flex;
  flex-direction:column;
  justify-content:center;   /* center content */
}

.why-card:hover{
  transform:translateY(-10px);
  background:#379fe5;
  color:#000;
}

/* ICON */
.why-card .icon{
  font-size:40px;
  margin-bottom:15px;
}

/* TEXT */
.why-card h5{
  font-weight:600;
  margin-bottom:10px;
}



.img1{
    height:100px;
}














/* ABOUT.PHP   */

/* ===== HERO ===== */
/* HERO */
.about-hero{
  padding:120px 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../../assets/uploads/2.webp') center/cover no-repeat;
}

/* ABOUT */
.about-section h2{
  border-left:5px solid #379fe5;
  padding-left:15px;
}

/* VISION & MISSION SPLIT */
.vision-box{
  background:#000;
}

.mission-box{
  background:#379fe5;
  color:#000;
}

/* TEXT */
.vision-box p{
  color:#ddd;
}

/* ===== PROCESS ===== */
/* ===== PROCESS SECTION ===== */
.process-section1{
  background:#f8f9fa;
}

/* CARD */
.process-card1{
  background:#fff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.3s;
  height:100%;
  position:relative;
}

.process-card1:hover{
  transform:translateY(-10px);
  background:#379fe5;
  color:#000;
}

/* STEP NUMBER */
.step-number1{
  width:50px;
  height:50px;
  background:#000;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  margin-bottom:15px;
}

/* HOVER EFFECT */
.process-card1:hover .step-number1{
  background:#fff;
  color:#000;
}

/* ===== TEAM ===== */
.team-section{
  padding:70px 0;
}

.team-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  text-align:center;
  transition:0.3s;
}

.team-card:hover{
  transform:translateY(-10px);
}

.team-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.team-card h5{
  margin-top:15px;
  font-weight:600;
}

.team-card p{
  color:#777;
  font-size:14px;
}

/* ===== CTA ===== */
.cta{
  background:#379fe5;
  color:#fff;
  padding:60px 0;
  text-align:center;
}

.cta .btn{
  border-radius:30px;
  padding:10px 25px;
}







/* CONTACT.PHP  */

/* FORM */
.contact-box{
  background:#fff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:0.3s;
}
.contact-box:hover{
  transform: translateY(-5px);
}

/* INPUT */
.contact-box input,
.contact-box textarea{
  border-radius:8px;
  border:1px solid #ddd;
  padding:12px;
}
.contact-box input:focus,
.contact-box textarea:focus{
  border-color:#379fe5;
  box-shadow:0 0 5px rgba(55,159,229,0.3);
}

/* BUTTON */
.btn-send{
  background:#379fe5;
  border:none;
  padding:12px;
  font-weight:600;
  border-radius:30px;
}
.btn-send:hover{
  background:#2d8ad0;
}

/* INFO BOX */
.info-box{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  margin-bottom:20px;
  text-align:center;
}
.info-box i{
  font-size:24px;
  color:#379fe5;
  margin-bottom:10px;
}

/* MAP */
.map iframe{
  width:100%;
  height:350px;
  border-radius:10px;
  border:0;
}








/* UPDATES.PHP    */

html {
  scroll-behavior: smooth;
}

section h3 {
  scroll-margin-top: 100px;
}

/* TITLE STYLE */
.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #379fe5;
  display: block;
  margin: 10px auto;
}

/* GALLERY */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  height: 250px; /* FIXED HEIGHT */
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT: crop nicely */
  transition: 0.4s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}










/* PORTFOLIO.PHP    */

html {
  scroll-behavior: smooth;
}

section h3 {
  scroll-margin-top: 100px; /* adjust based on navbar height */
}


.portfolio h3 {
  text-align: center;
  font-weight: 700;
  position: relative;
  margin-bottom: 30px;
}

.portfolio h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #379fe5;
  display: block;
  margin: 10px auto 0;
}









/* CARD */
.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.portfolio-img {
  height: 300px;
  object-fit: cover;
}

/* TEXT */
.portfolio-title {
  font-size: 18px;
  font-weight: 600;
  min-height: 45px;
}

.portfolio-desc {
  font-size: 14px;
  color: #555;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HOVER ZOOM */
.portfolio-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}







/* FIX MODAL SIZE */
#projectModal .modal-dialog {
  max-width: 600px; /* fixed width */
}

#projectModal .modal-content {
  height: 700px; /* fixed height */
  border-radius: 12px;
  overflow: hidden;
}

/* BODY LAYOUT */
#projectModal .modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

/* IMAGE FIX */
#modalImage {
  width: 100%;
  height: 500px; /* fixed image size */
  object-fit: cover;
}

/* TEXT FIX */
#modalDesc {
  overflow-y: auto;
  max-height: 120px;
  font-size: 15px;
  color: #555;
}







/* FOOTER.PHP   */

.footer-section{
  background:#0d0d0d;
  color:#fff; /* ✅ important */
}

.footer-section p{
  color:#ccc; /* lighter text */
}

.footer-links a{
  color:#ccc;
}

.footer-links a:hover{
  color:#379fe5;
}

/* HEADINGS */
.footer-title{
  color:#379fe5;
}




/* SOCIAL ICONS */
.social-icons a{
  display:inline-block;
  width:40px;
  height:40px;
  line-height:40px;
  text-align:center;
  margin-right:10px;
  border-radius:50%;
  background:#222;
  color:#fff;
  transition:0.3s;
}

.social-icons a:hover{
  background:#ffc107;
  color:#000;
}