    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Lato', sans-serif;
      background-color: #000;
    }

    /* Navbar styles */
/* Navbar styles for mobile only */
@media (max-width: 991.98px) {
  .collapse {
    display: block !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    background: transparent !important;
    opacity: 0 !important;
    transition: none !important;
  }

  .collapsing {
    height: auto !important;
    visibility: visible !important;
    background: #000000 !important;
    opacity: 0.9 !important;
    transition: none !important;
  }

  .collapse.show {
    height: auto !important;
    visibility: visible !important;
    background: #000000 !important;
    opacity: 0.9 !important;
    transition: none !important;
    border-top: 1px solid #333;
  }
  .navbar-dark .nav-link {
    color: #fff;
    font-size: 14px !important;
    padding: 2px !important;
    }
  .navbar-toggler {
    color: #333 !important;
    box-shadow: none !important;
  }

  .navbar {
    background: #000000 !important;
    /*opacity: 0.9;*/
    border-bottom: 5px solid #0e1d47;
    border-top: 5px solid #0e1d47;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
  }
  .gap-4 {
    gap: .5rem !important;
  }
  .navbar {
      transition: all var(--transition-speed) ease-in-out;
      padding: 0px !important;
    }
}

    .navbar {
      transition: all var(--transition-speed) ease-in-out;
      padding: 0px .5rem 13px 0;
    }

    .navbar-brand {
      /*font-family: 'Playfair Display', serif;*/
      font-size: 1.4rem;
      font-weight: bold;
      /*color: #000;*/
      color: rgb(46 81 163 / var(--tw-text-opacity, 1));
    }
    .navbar-expand-lg .navbar-collapse {
    display: flex!important;
    /*flex-basis: auto;*/
    padding: 8px;
    margin-top: 10px;
    }
    .navbar-brand img{
        max-height: 65px;
        padding-bottom: 0px;
    }
    .navbar.scrolled {
      background-color: #fff !important;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
      font-size: 1rem;
      font-weight: 500;
      color: #000;
      transition: color var(--transition-speed);
    }

    .navbar-dark .nav-link {
      color: #fff;
      font-size: 18px;
    }

    .navbar.scrolled .nav-link {
      /*color: #000 !important;*/
      font-size:18px;
      padding-right: 50px;
    }

    .navbar-dark .navbar-brand {
      color: #fff;
    }

    .navbar.scrolled .navbar-brand {
      color: #000;
    }

    .navbar-nav .nav-link:hover {
      color: #2e51a3 !important;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      position: relative;
      color: #fff;
      margin-top: 50px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 20, 0.85);
      z-index: 1;
    }

    .hero .container {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4.8rem;
      font-weight: 700;
      line-height: 1.3;
      margin: 0;
    }

    .highlight {
        display: block;
        font-size: 3.8rem;
        font-weight: 700;
        background: linear-gradient(90deg, #2b5fbb, #94a9ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: -10px;
    }

    .hero p {
      font-size: 1.25rem;
      color: #e0e0e0;
      max-width: 800px;
      margin-top: 1.5rem;
    }

	.scroll-down {
		border-radius: 100%;
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 1.5rem;
		color: #fff;
		animation: bounce 2s infinite;
		z-index: 2;
		border: 1px solid #666;
		width: 50px;
		height: 50px;
		padding: 8px 12px;
	}
	
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(10px); }
    }

    /* Services Section */
    .services {
      background-color: #fff;
      padding: 5rem 0;
      color: #000;
      
    }
    
    .services h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 2rem;
      text-align: center;
    }
    
    .services h2 span {
      position: relative;
      display: inline-block;
    }
    
    .services h2 span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 10%;
        transform: translateX(-50%);
        width: 52px;
        height: 2px;
        background-color: #1e3a8a;
    }
    
    .services p {
      font-family: 'Lato', sans-serif;
      font-size: 1.2rem;
      text-align: left;
      color: #666;
      margin-bottom: 1rem;
    }

    .service-card {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 2rem;
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border: 1px solid #aec1ef;
    }

    .service-card i {
      font-size: 3rem;
      color: #2e51a3;
      margin-bottom: 1rem;
    }

    .service-card ul {
      list-style: none; /* Remove default bullet */
      padding-left: 5px;
    }
    
.service-box {
  background: #fff;
  border: 2px solid #ccc; /* default gray border */
  border-radius: 12px;
  padding: 30px 20px;
  text-align: left;
  position: relative;
  height: 100%;
  transition: border-color 0.3s ease;
}

.most-popular {
  border-color: #2e51a3; /* blue border on hover */
}
.service-box:hover {
  border: 1px solid #2e51a3; /* blue border on hover */
}
/* Make only the first box have a blue border by default */
/*.service-box:first-child {*/
/*  border-color: #2d3e75;*/
/*}*/

    
    .service-box .icon {
      font-size: 50px;
      color: #2e51a3;
      margin-bottom: 10px;
    }
    
    .service-title {
      font-weight: 700;
      font-size: 32px;
      font-family: 'Playfair Display', serif;
      margin-bottom: 15px;
      color: #000;
    }
    
    .price {
      font-weight: 700;
      font-size: 26px !important;
      color: #2e51a3 !important;
    }
    
    .service-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 20px;
    }
    .btn-order {
      background: #2e51a3 !important;
      border: 1px solid #2e51a3 !important;
      padding: 15px 0px;
    }
    .service-list li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 6px;
    }
    
    .service-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #2d3e75;
    }
    
    .badge-top {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: #2e51a3;
      color: white;
      padding: 4px 12px;
      border-radius: 15px;
      font-size: 16px;
      font-weight: 600;
    }
    
    .highlight-box {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    
    .highlight-box i {
      font-size: 30px;
      color: #2d3e75;
    }
    .service-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 20px;
    }
    .service-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #2d3e75; /* blue bullet point */
      font-size: 30px;
      line-height: 1;
    }

    .custom-solutions-section {
       background: #fff; 
    }
    .custom-box {
      background: linear-gradient(90deg, #2d4c9a, #5d71b5);
    }
    .fw-medium{
        color: #2d4c9a;
    }
    .fw-medium:hover{
        color: #2d4c9a !important;
    }
    .fw-bold {
    font-weight: 700!important;
    font-family: 'Playfair Display', serif;
    }
    
    
    
    /* Our blog Section */
    .our-blog {
      padding: 8rem 0;
      background: #f9f9f9;
      font-family: 'Lato', sans-serif;
    }
    
    .our-blog h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    .our-blog h2 span {
      position: relative;
      display: inline-block;
    }
    
    .our-blog h2 span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 10%;
        transform: translateX(-50%);
        width: 52px;
        height: 2px;
        background-color: #1e3a8a;
    }
    .our-blog p {
      text-align: center;
      margin: 0 auto 50px;
      font-size: 1.1rem;
      color: #777;
    }
    
    /*.blog-grid {*/
    /*  display: grid;*/
    /*  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    /*  gap: 30px;*/
    /*}*/
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .blog-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      background: #fff;
      transition: transform 0.3s ease;
    }
    
    .blog-item:hover {
      transform: translateY(-8px);
    }
    
    .blog-item img {
      width: 100%;
      display: block;
      border-radius: 12px 12px 0 0;
    }
    
    .overlay_blog {
      padding: 20px;
      background-color: #fff;
    }
    
    .overlay_blog .title {
      font-size: 1.3rem;
      color: #333;
      margin-bottom: 8px;
      font-weight: 700;
    }
    
    .overlay_blog .subtitle {
      color: #2e51a3;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 12px;
      text-align:left;
    }
    
    .overlay_blog .para {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.5;
      margin-bottom: 15px;
      text-align:left;
    }
    
    .overlay_blog .details {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: #999;
    }
    
    .overlay_blog .details i {
      margin-right: 5px;
      color: #2e51a3;
    }
    
    /* Our Work Section */
    .our-work {
      background-color: #fff;
      padding: 8rem 0;
      color: #000;
    }
    
    .our-work h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 2rem;
      text-align: center;
    }
    
    .our-work h2 span {
      position: relative;
      display: inline-block;
    }
    
    .our-work h2 span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 10%;
        transform: translateX(-50%);
        width: 52px;
        height: 2px;
        background-color: #1e3a8a;
    }

    .our-work p {
      font-family: 'Lato', sans-serif;
      color: #4a4a4a;
      font-size: 1.2rem;
      text-align: center;
      color: #666;
      margin-bottom: 2rem;
    }
    .our-work .para {
        text-align: left !important;
        padding: 15px !important;
        color: #333 !important;
    }
    

    
    .filter-buttons {
      text-align: center;
      margin-bottom: 2rem;
    }

    .filter-buttons button {
      font-family: 'Lato', sans-serif;
      font-size: 0.9rem;
      background-color: #fff;
      color: #2e51a3;
      border: 1px solid #2e51a3;
      border-radius: 50px; /* changed from 35% to 50px */
      padding: 12px 23px;
      margin: 5px 0.5rem;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s;
    }
    
    .filter-buttons button.active {
      background-color: #2e51a3;
      color: #fff;
      border-color: #2e51a3;
    }
    
    .portfolio-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px; /* keeps spacing between items */
      justify-content: center; /* centers the items */
    }
    
    .portfolio-item {
      flex: 0 0 calc(33.333% - 20px);
      box-sizing: border-box;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* x, y, blur, color */
    }

    .portfolio-item img {
      width: 100%;
      display: block;
      border-radius: 8px;
    }
    
    .portfolio-item .overlay {
      position: absolute;
      left: 0;
      bottom: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      color: white;
      width: 100%;
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 0 0 8px 8px;
    }
    
    .portfolio-item:hover .overlay {
      opacity: 1;
    }
    
    .portfolio-item .title {
        margin: 0;
        font-size: 22px;
        font-weight: 300;
        font-family: 'Playfair Display', serif;
        padding: 15px;
        padding-bottom: 0;
    }
    
    .portfolio-item .subtitle {
      margin: 5px 0 0;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      color: #2e51a3;
      text-align: left;
      padding: 0 15px;
      letter-spacing: 0.05em;
    }
    .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-item img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: left;
}


.portfolio-item:hover .overlay {
  opacity: 1;
}


    /* About Section */
    .about {
      background-color: #fff;
      padding: 5rem 15px;
      color: #000;
    }

    .about h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      text-align: left;
      margin-bottom: 2rem;
    }
    .about h2 span {
      position: relative;
      display: inline-block;
    }
    
    .about h2 span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 7%;
        transform: translateX(-50%);
        width: 52px;
        height: 2px;
        background-color: #1e3a8a;
    }
    .about p {
      font-family: 'Lato', sans-serif;
      color: #4a4a4a;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    /*.stats {*/
    /*  display: flex;*/
    /*  gap: 2rem;*/
    /*  margin-bottom: 2rem;*/
    /*}*/

    /*.stat-item {*/
    /*  flex: 1;*/
    /*  text-align: left;*/
    /*}*/
    .stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    .stat-item {
      width: calc(50% - 1rem); /* Subtract half the gap to fit 2 items */
      text-align: left;
      box-sizing: border-box;
    }


    .stat-item h3 {
      font-family: 'Lato', sans-serif;
      font-size: 2.0rem;
      font-weight: 700;
      color: #2e51a3;
    }

    .stat-item p {
      font-family: 'Lato', sans-serif;
      font-size: 0.9rem;
      text-transform: uppercase;
      color: #666;
    }

    .image-container {
      position: relative;
      display: inline-block;
      border-radius: 10px;
    }
    
    .image-container img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 10px;
      position: relative;
      z-index: 1;
    }
    
    .image-container::after {
      content: "";
      position: absolute;
      top: 20px;   /* Vertical offset */
      left: 20px;  /* Horizontal offset */
      width: 100%;
      height: 100%;
      border: 2px solid #1e3a8a; /* Blue border like in your image */
      border-radius: 10px;
      z-index: 0;
    }

    .process {
      margin-top: 6rem;
    }

    .process h3 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .process-item
    {
        text-align:center;
    }
    .process-item h4 {
      font-family: 'Playfair Display', serif;
      font-size: 3.0rem;
      color: #2e51a3;
      margin-bottom: 0.5rem;
    }

    .process-item h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .process-item p {
      font-family: 'Lato', sans-serif;
      font-size: 1.2rem;
      color: #666;
    }

    /* Contact Section */
    .contact {
      background-color: #1a1a1a;
      padding: 5rem 15px;
      color: #fff;
    }

    .contact h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    .contact h2 span {
      position: relative;
      display: inline-block;
    }
    
    .contact h2 span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 7%;
        transform: translateX(-50%);
        width: 52px;
        height: 2px;
        background-color: #1e3a8a;
    }

    .contact p {
      font-family: 'Lato', sans-serif;
      font-size: 1.2rem;
      text-align: center;
      color: #e0e0e0;
      margin-bottom: 3rem;
    }

    .contact-form {
      background-color: #333;
      padding: 2rem;
      border-radius: 10px;
    }

    .contact-form label {
      font-family: 'Lato', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .form-control
    {
      padding: 1.0rem .75rem;  
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      font-family: 'Lato', sans-serif;
      font-size: 0.9rem;
      background-color: #444;
      border: none;
      color: #fff;
      margin-bottom: 1rem;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      font-family: 'Lato', sans-serif;
      font-size: 0.9rem;
      color: #aaa;
    }

    .contact-form button {
      font-family: 'Lato', sans-serif;
      font-size: 0.9rem;
      background-color: #2e51a3;
      border: none;
      padding: 0.75rem 2rem;
      color: #fff;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    .contact-form button:hover {
      background-color: #3b6db5;
    }

    .contact-info {
      color: #e0e0e0;
    }

    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .contact-info h4 {
        font-family: monospace;
        font-size: 1.0rem;
        font-weight: 300;
        margin-bottom: 0.5rem !important;
        text-transform: uppercase;
        color: #aba6a6cc;
    }

    .contact-info p {
      font-family: 'Lato', sans-serif;
      font-size: 1.2rem;
      margin-bottom: 2.0rem;
      text-align: left;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icons a {
      color: #fff;
      font-size: 1.5rem;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #2e51a3;
    }

    /* Footer */
    footer {
      background-color: #000;
      padding: 2rem 0;
      color: #fff;
    }

    footer .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: #fff;
      margin-right: 0.5rem;
    }

    footer .navbar-brand span {
      color: #2e51a3;
    }

    footer p {
      font-family: 'Lato', sans-serif;
      font-size: 0.75rem;
      color: #e0e0e0;
      margin: 0;
      display: inline;
    }

    footer a {
      font-family: 'Lato', sans-serif;
      font-size: 1.0rem;
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 1rem; /* Increased spacing between links */
    }

    footer a:hover {
      color: #2e51a3 !important;
    }
    .small, small {
        font-size: .875em;
        color: #898686;
    }
    .border-bottom {
        border-bottom: 1px solid #383535 !important;
    }
    
    .footer-logo-media
    {
        color: #2e51a3;
        font-size: 17px;
        text-transform: uppercase;
        font-weight: 600;
    }
    /* Popup styling */
    .popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      max-width: 800px;
      width: 90%;
    }

    .popup-content {
      display: flex;
      flex-direction: column;
    }

    .popup-image {
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      margin-bottom: 15px;
    }

    .popup h3 {
      font-size: 1.5em;
      margin-bottom: 5px;
    }

    .popup p {
      font-size: 1em;
      margin-bottom: 15px;
      color: #666;
    }

    .popup-buttons {
      display: flex;
      gap: 10px;
    }

    .popup-buttons button {
      padding: 8px 15px;
      border: 1px solid #ddd;
      background: #f0f0f0;
      border-radius: 20px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .popup-buttons button:hover {
      background: #ddd;
    }

    .popup-close {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      font-size: 1.2em;
      cursor: pointer;
      color: #666;
    }

    /* Overlay for background dimming */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }
    @media (max-width: 768px) {
    .portfolio-item {
      flex: 0 0 calc(100.00% - 20px);
      box-sizing: border-box;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

      .hero h1, .highlight {
        font-size: 2.2rem;
      }
      .hero p {
        font-size: 1.2rem;
      }
      .services h2,
      .our-work h2,
      .about h2,
      .contact h2 {
        font-size: 3rem;
      }
      .services h2 {
        font-size: 2.5rem;
      }
      .service-card h3 {
        font-size: 1.5rem;
      }
      .stats {
        flex-direction: column;
      }
      footer .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      footer .navbar-brand {
        margin-right: 0;
        margin-bottom: 0.5rem;
      }
      footer a {
        margin: 0 0.5rem;
      }
       footer a:hover {
        text-decoration: underline;
        }
    }