
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
}

/*  NAVBAR  */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #000000;
    border-bottom: 1px solid #1a1a1a;
    
    transition: all 0.4s ease;
    border-bottom: solid 1px #db2c2c;
    
    z-index: 999;
   
}


.nav-wrapper{
font-family: font_philo;

}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    height: 80px;
}

.container {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
    transition: transform 0.4s ease;
}
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-menu li a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.20rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 10px 4px;
    transition: color 0.35s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #e80e16;          
}

/* Underline hover effect */
.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2.5px;
    bottom: 4px;
    left: 50%;
    background: #e80e16;
    transition: width 0.35s ease, left 0.35s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 65%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ---------------- Mobile Menu ---------------- */
@media screen and (max-width: 991px) {

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
        transition: left 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a {
        font-size: 1.6rem;
        font-weight: 600;
        padding: 12px 20px;
    }

    .nav-menu li a::after {
        display: none; /* cleaner on mobile */
    }

    /* scrolled mobile adjustment */
    .navbar.scrolled + .nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }
}

/*Hero Slider / Banner*/
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 520px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
    padding: 0 20px;
}

.slide-title {
    font-size: 4.2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.7);
    letter-spacing: -1px;
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 1.55rem;
    font-weight: 400;
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@media (max-width: 991px) {
    .slide-title {
        font-size: 3.2rem;
    }
    .slide-subtitle {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .slide-title {
        font-size: 2.6rem;
    }
    .slide-subtitle {
        font-size: 1.15rem;
    }
    .hero-slider {
        min-height: 520px;
    }
}

/* footer*/
.site-footer {
    background: #000;
    color: #fff;
    padding-top: 60px;
    font-family: Arial, sans-serif;
    border-top: 1px solid #ddd;   /* Line above footer */
}


.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-col h3{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.footer-col h3::after{
    content: "";
    position: absolute;
    left: 45%;
    bottom: 0;
    width: 40px;          /* Line length */
    height: 2px;          /* Line thickness */
    background: #c8102e;  /* Change to your theme color */
}
.footer-logo img {
    width: 250px;
    position: relative;
    left: 45px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c8102e;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #c8102e;
    border-color: #c8102e;
}

/* Bottom Footer */
.footer-bottom {
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.footer-bottom a{
    color: #cccccc;            /* Link color set to red */
    text-decoration: none; /* Remove underline */
}

.footer-bottom a:hover{
    text-decoration: underline; 
    border-color: #c8102e;
    background: #c8102e;
    /* Optional: underline on hover */
}


/*Project section oh home page*/
.projects-section {
  padding: 90px 20px;
  background: #000;
  text-align: center;
}

.projects-section h2 {
  font-size: 2.2rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 0.6em;
  color: #fff;
  font-family: font_philo;
}

.projects-section .underline {
  width: 180px;
  height: 4px;
  background: #e80e16;
  margin: 0 auto 1.2em;
  border-radius: 2px;
}

.projects-section .description {
  max-width: 820px;
  margin: 0 auto 3.5em;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ddd;
}

/* ── Carousel ────────────────────────────────────────────── */
.carousel-wrapper {
  max-width: 1240px;
  margin: 0 auto 50px;
  overflow: hidden;
  position: relative;
}

.projects-carousel {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
}

.project-card {
  flex: 0 0 33.333%;
  width: 33.333%;
  padding: 0 15px;
 
}

.project-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
}

.project-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-name {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.85);
  pointer-events: none;
}

/* ── View More Button ────────────────────────────────────── */
.view-more-wrapper {
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #0f0f0e;
  color: #f1efef;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
   border: 2px solid #e80e16;
}

.view-more-btn:hover {
  background: #e80e16;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(212, 55, 73, 0.4);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .project-card {
    flex: 0 0 50%;
    width: 50%;
  }
  .projects-section h2 {
    font-size: 2.6rem;
  }
  .project-name {
    font-size: 1.35rem;
  }
}

@media (max-width: 640px) {
  .projects-section {
    padding: 70px 15px;
  }
  .project-card {
    flex: 0 0 100%;
    width: 100%;
  }
  .projects-section h2 {
    font-size: 2.1rem;
  }
  .underline {
    width: 130px;
    height: 3px;
  }
  .view-more-btn {
    padding: 10px 32px;
    font-size: 0.98rem;
  }
  .project-name {
    font-size: 1.25rem;
    bottom: 18px;
  }
}

.stats-section {
  background: #000000;
  padding: 10px 20px;
  color: white;
  margin-top:30px ;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.stat-item {
  text-align: center;
  min-width: 140px;
  flex: 1 1 140px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #c8102e;          /* Red color - you can change shade */
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;          /* gold for label - or change to white */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.separator {
  color: #646363;
  font-size: 3.5rem;
  font-weight: 100;
  line-height: 1;
  align-self: center;
}

/* ────────────────────────────────────────────── */
/* Responsive Layout                                */
/* ────────────────────────────────────────────── */


@media (max-width: 992px) {
  .stats-container {
    gap: 40px 25px;
  }
  
  .stat-number {
    font-size: 3.2rem;
  }
  
  .separator {
    display: none;           /* hide | on medium screens */
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 50px 15px;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 45px;
  }
  
  .stat-item {
    min-width: auto;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}

/* Previous styles remain the same... */
.section-border {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 10%,
    #c8102e 30%,
    #c8102e 70%,
    transparent 90%
  );
  margin: 0 auto;
  max-width: 90%;
  box-shadow: 0 0 15px rgba(200, 16, 46, 0.4); /* subtle red glow */
  opacity: 0.9;
}

.top-border {
  margin-bottom: 40px;
}

.bottom-border {
  margin-top: 40px;
}

/* Make lines full-width on smaller screens */
@media (max-width: 600px) {
  .section-border {
    max-width: 100%;
    background: linear-gradient(
      to right,
      transparent 5%,
      #c8102e 20%,
      #c8102e 80%,
      transparent 95%
    );
  }

  .top-border {
    margin-bottom: 30px;
  }

  .bottom-border {
    margin-top: 30px;
  }
}

/* Optional: sharper solid line version if you prefer no gradient */
.section-border.solid {
  background: #c8102e;
  height: 1px;
  box-shadow: none;
  max-width: 100%;
}


/*about home page*/

.about-us-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    padding: 100px 0;
    
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);   /* adjust 0.60 – 0.75 to control darkness */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.about-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 450;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    letter-spacing: 1.8px;
  margin-bottom: 0.6em;
  color: #fff;
  font-family: font_philo;
}

.about-text h2:after {
    content: '';
    position: absolute;
    width: 110px;
    height: 5px;
    background: #c8102e;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}


.lead {
    font-size: 1.48rem;
    font-weight: 500;
    color: #e9e9e9;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.about-text p {
    font-size: 1.16rem;
    line-height: 1.85;
    color: #ccc;
    margin-bottom: 1.6rem;
}

.highlight-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin: 40px 0 45px 0;
}

.point {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(5px);
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 1.08rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.35s;
}

.point:hover {
    background: rgba(195, 156, 94, 0.16);
    border-color: #c8102e;
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-block;
    background: #141414;
    color: #faf8f8;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.12rem;
    transition: all 0.4s;
    border: 2px solid #c8102e;
}

.btn-primary:hover {
    background: #c8102e;
    transform: translateY(-3px);
   
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-us-section {
        min-height: 640px;
        padding: 80px 0;
    }
    .about-text h2 {
        font-size: 2.9rem;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        min-height: 580px;
        padding: 70px 0;
    }
    .about-text h2 {
        font-size: 2.5rem;
    }
    .lead {
        font-size: 1.25rem;
    }
    .btn-primary {
        padding: 13px 34px;
        font-size: 1.05rem;
    }
}

/*services*/

.services-section {
      background: #000000;
      padding: 80px 20px;
      text-align: center;
    }

    .services-section h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: #ffffff;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      font-family: font_philo;
       font-weight: 450;
    }

    .services-section h2::after {
      content: '';
      position: absolute;
      width: 120px;
      height: 4px;
      background: #c8102e; /* gold accent - change if you want */
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
    }

    .services-container {
      max-width: 1400px;
      margin: 60px auto 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      padding: 0 15px;
    }

    .service-card {
      background: #000000;
      border: 1px solid #ffffff;
      border-radius: 12px;
      padding: 40px 25px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(201, 169, 110, 0.08), transparent);
      transition: 0.7s;
    }

    .service-card:hover::before {
      left: 100%;
    }

    .service-card:hover {
      transform: translateY(-12px);
      border-color: #c8102e;
      box-shadow: 0 20px 40px rgba(0.2,0,0,0);
    }

    .service-icon {
      font-size: 3.8rem;
      color: #bbbbbb; /* gold / accent color */
      margin-bottom: 25px;
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.15) rotate(5deg);
      color:#c8102e;
    }

    .service-card h3 {
      font-size: 1.2rem;
      margin-bottom: 18px;
      color: #ffffff;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .service-card p {
      font-size: 1.05rem;
      color: #bbbbbb;
      margin-bottom: 15px;
    }

    .service-card ul {
      list-style: none;
      text-align: left;
      font-size: 1rem;
      color: #cccccc;
      padding-left: 0;
    }

    .service-card ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
    }

    .service-card ul li::before {
      content: "\f058"; /* font awesome check circle */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: #c8102e;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .services-section h2 {
        font-size: 2.4rem;
      }
      
      .service-card {
        padding: 35px 20px;
      }
      
      .service-icon {
        font-size: 3.2rem;
      }
      
      .service-card h3 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 576px) {
      .services-section {
        padding: 60px 15px;
      }
      
      .services-section h2 {
        font-size: 2rem;
      }
    }


    
    .contact-container {
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .contact-wrapper {
      background: white;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      font-family: font_philo;
    }

    /* Left - Info */
    .contact-info {
      background: #c8102e;
      color: white;
      padding: 50px 40px;
    }

    .contact-info h2 {
      font-size: 2rem;
      margin-bottom: 1.8rem;
      color: white;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 2rem;
      font-size: 1.05rem;
    }

    .info-item i {
      font-size: 1.6rem;
      margin-right: 1.2rem;
      margin-top: 4px;
      width: 32px;
      text-align: center;
    }

    .info-item p {
      opacity: 0.95;
    }

    /* Right - Form */
    .contact-form {
  padding: 50px 40px;
  background-color: #000;   /* Black background */
  color: white;             /* Make text visible */
}

    .contact-form h2 {
      font-size: 1.9rem;
      margin-bottom: 2rem;
      color: #ffffff;
    }

    .form-group {
      margin-bottom: 1.6rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: #ffffff;
    }

    input,
textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #000;   /* Black background */
  border: 1px solid #bbb;    /* Red border */
  border-radius: 8px;
  font-size: 1rem;
  color: #fff;              /* White text */
  transition: all 0.25s;
}

/* Focus effect */
input:focus,
textarea:focus {
  outline: none;
  border-color: #bbb;
  
}

/* Placeholder color */
input::placeholder,
textarea::placeholder {
  color: #bbb;
}

    input:focus, textarea:focus {
      outline: none;
      border-color: #bbb;
      box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    .btn-submit {
      background: black;
      color: white;
      border-color: #c8102e;
      padding: 14px 32px;
      font-size: 1.05rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 500;
    }

    .btn-submit:hover {
      background: #c8102e;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(13,110,253,0.3);
    }

    .contact-icon {
  text-align: left;
  margin-bottom: 20px;
}

.contact-icon i {
  font-size: 40px;
  color: white;
}

    /* Responsive */
    @media (max-width: 850px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
      
      .contact-info {
        padding: 40px 30px;
      }
      
      .contact-form {
        padding: 40px 30px;
      }
    }

    @media (max-width: 500px) {
      .contact-container {
        margin: 30px 15px;
      }
      
      .contact-info, .contact-form {
        padding: 35px 25px;
      }
      
      .contact-info h2, .contact-form h2 {
        font-size: 1.7rem;
      }
    }


    /* Container */

.container-width{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* ABOUT SECTION */
/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#000;
    color:#fff;
}

img{
    max-width:100%;
    display:block;
}

.container-width{
    width:90%;
    max-width:1200px;
    margin:auto;
}



/* =========================
   ABOUT COMPANY SECTION
========================= */

.about-company-area{
    padding:80px 0;
    background:#000;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-img-wrapper img{
    width:100%;
    height: auto;
    border-radius: 8px;
}

.about-text-wrapper h1{
    font-size:40px;
    margin-bottom:20px;
    font-weight:600;
    font-family: font_philo;
}

.about-text-wrapper p{
    font-size:17.5px;
    line-height:1.8;
    margin-bottom:15px;
    color:#ddd;
    text-align: justify;
}



/* =========================
   VISION & MISSION SECTION
========================= */

.vision-mission-area{
    padding:80px 0;
    background:#000;
}

.vm-main-heading{
    text-align:center;
    font-size:32px;
    margin-bottom:50px;
    letter-spacing:2px;
    font-weight:600;
}
/* VISION MISSION HEADING */

.vm-main-heading{
    text-align:center;
    font-size:32px;
    margin-bottom:60px;
    letter-spacing:2px;
    font-weight:600;
    position:relative;
    display:inline-block;
}

/* center alignment wrapper */
.vision-mission-area{
    padding:80px 0;
    background:#000;
    text-align:center;
}

/* left line */
.vm-main-heading::before{
    content:"";
    position:absolute;
    width:80px;
    height:3px;
    background:red;
    left:-100px;
    top:50%;
    transform:translateY(-50%);
}

/* right line */
.vm-main-heading::after{
    content:"";
    position:absolute;
    width:80px;
    height:3px;
    background:#c8102e;
    right:-100px;
    top:50%;
    transform:translateY(-50%);
}


/* GRID */

.vm-grid-layout{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}



/* BOX */

.vm-box{
    background:#111;
    padding:35px;
    border-radius:10px;
    text-align:center;
    border:2px solid transparent;
    transition:0.4s ease;
}



/* HOVER */

.vm-box:hover{
    border-color:#c8102e;
    transform:translateY(-6px);
}



/* ICON */

.vm-icon-box{
    margin-bottom:20px;
    color:grey;
    transition:0.4s;
}



/* ICON HOVER */

.vm-box:hover .vm-icon-box{
    color:#c8102e;
}



/* TEXT */

.vm-box h3{
    font-family:  sans-serif;
font-size: 20px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;


color: #ffffff;
margin-bottom: 10px;
}

.vm-box p{
    font-family: 'Montserrat', sans-serif;
    font-size: 17.5px;
    font-weight: 400;
    line-height: 1.8;   /* increases space between lines */
    color: #bfbfbf;
}



/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.vm-grid-layout{
    grid-template-columns:1fr;
}

.about-text-wrapper h1{
    font-size:32px;
}

.vm-main-heading{
    font-size:28px;
}

}



@media(max-width:600px){

.about-company-area{
    padding:60px 0;
}

.vision-mission-area{
    padding:60px 0;
}

.about-text-wrapper h1{
    font-size:26px;
}

.vm-box{
    padding:25px;
}

.vm-main-heading{
    font-size:24px;
}

}


/*portfolio project*/

.portfolio-section{
    background:#000;
    padding:100px 20px;
}

.portfolio-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1300px;
    margin:auto;
    gap:40px;
    flex-wrap:wrap;
}

.portfolio-text{
    max-width:700px;
}

/* PORTFOLIO background text */
.portfolio-bg-text{
    display:block;
    font-size:110px;
    font-weight:700;
    letter-spacing:8px;
    color:#000;
    -webkit-text-stroke:1px #989696ae;
}

/* heading */
.portfolio-text h2{
    font-size:42px;
    color:#fff;
    font-family: font-philo;

   
    
}

/* paragraph */
.portfolio-text p{
    color:#ccc;
    font-size:18px;
    line-height:1.7;
}

/* button */
.view-btn{
    background:#fff;
    color:#000;
    padding:16px 36px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.view-btn:hover{
    background:#ddd;
}

/* Tablet */
@media (max-width:992px){

.portfolio-bg-text{
    font-size:80px;
}

.portfolio-text h2{
    font-size:32px;
}

}

/* Mobile */
@media (max-width:600px){

.portfolio-bg-text{
    font-size:50px;
}

.portfolio-text h2{
    font-size:24px;
}

.portfolio-text p{
    font-size:16px;
}

}

.dev-projects{
padding:30px 8%;
text-align:center;
font-family:Arial;
}

/* FILTER BUTTONS */


.filters{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-bottom:30px;
}

.filters button{
padding:12px 25px;
background:#111;
color:white;
border:2px solid grey;
cursor:pointer;
border-radius:4px;
font-weight:600;
transition:0.3s;
}

.filters button:hover{

border-color:#c8102e;
}


/* PROJECT GRID */

.projects{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:25px;
}

/* PROJECT CARD */

.project{
background:white;
cursor:pointer;
border-radius:6px;
overflow:hidden;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.project:hover{
transform:translateY(-5px);
}

.project img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

/* PROJECT NAME */

.project p{
background:#c8102e;
color:white;
margin:0;
padding:12px;
font-weight:600;
font-size:16px;
text-align:center;
}

/* POPUP */

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:9999;   /* important */
}

.popup img{
max-width:90%;
max-height:85%;
border-radius:6px;
}
/* RESPONSIVE */

@media(max-width:768px){

.project img{
height:200px;
}

.filters button{
padding:10px 18px;
font-size:14px;
}

}


