
  /* ------------------------------------------------------
  FONT IMPORTS
  ------------------------------------------------------ */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;700&display=swap');
  @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');

  body {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2 {
	font-family: 'AvantGarde Bk BT', sans-serif;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: -1px;
  }
  
  .script-highlight {
    font-family: 'Achieve It', cursive;
    color: #ff0000;
    font-size: 1.2em;
  }

  h3,h4,h5,h6 {
    font-weight: 400;
    line-height: inherit;
    letter-spacing: -1px;
  }

  h1 {
    color: #0e0e0e;
    font-size: 3em;
    margin-bottom: 30px;
  }

  h2 {
    color: #232323;
    font-size: 2em;
  }

  h3 {
    color: #232323;
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 0;
  }

  h4 {
    color: #757575;
    font-size: 18px;
    line-height: normal;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 25px;
  }

  strong {
    font-weight: 500;
  }

  
    
  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: #232323;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #ff0000;
    outline: none;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .section-title h2 {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: auto;
  }

  .section-title .line-bar {
    color: #ff0000;
    display: block;
    font-size: 5em;
    line-height: 0;
  }

  .section-btn {
    background: #ff0000;
    border: 0;
    border-radius: 17px;
    color: #0e0e0e;
    cursor: pointer;
    font-size: inherit;
    font-weight: normal;
    padding: 15px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #0e0e0e;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #757575, #0e0e0e);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #757575, #0e0e0e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-color: transparent;
    color: #757575;
  }

  .create-btn {
    background: #ffffff;
	border: 1px solid #232323;
    border-radius: 12px;
    color: #0e0e0e;
    cursor: pointer;
    font-size: inherit;
    font-weight: normal;
    padding: 15px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    float: left;
	margin-left: 15px;
    box-shadow: 0 4px 12px rgba(14, 14, 14, 0.25);	
  }

  .create-btn:hover,
  .create-btn:focus {
    background: #ff0000;  /* fallback for old browsers */
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(14, 14, 14, 0.2);
    border-color: #0e0e0e;
  }

  section {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
  }

  .h1 {
    font-size: clamp(1.5rem, 5vw, 3rem); /* scales with screen size */
    line-height: 1;
	text-align: left;
  }
 
  .highlight {
    background-color: #ff0000;
    color: #0e0e0e;
    padding: 0.1em 0.3em;         /* scales with font size */
    border-radius: 0.3em;     /* slight rounding for polish */
	margin-bottom: 0.2em;	
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 60%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #ff0000;
    border-top-color: #f7f7f7;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



/*---------------------------------------
  WHATSAPP             
-----------------------------------------*/
.whatsapp-popup {
    position: fixed;
    bottom: 25px;
    right: 70px; /* Adjust this to sit perfectly next to your icon */
    display: none; /* Hidden on load */
    z-index: 9999;
    animation: slideIn 0.5s ease-out;
}

.whatsapp-popup.show {
    display: block; /* Triggered by JS */
}

.popup-content a {
    display: inline-block;
    padding: 10px 22px;
    background-color: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 7px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.popup-content a:hover {
    background-color: #ff0000; /* Signature Brand Red */
    transform: scale(1.05);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.whatsapp-icon {
    position: fixed;
    bottom: 23px;
    right: 20px;
    z-index: 10000;
}

.whatsapp-icon img {
    width: 30px;
    height: auto;
}



/*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    border-bottom: 1px solid #ececec; /* ADD THIS LINE: Light grey line */
    border-top: none;
    margin-bottom: 0;
    padding: 25px 0;
  }
	
  .navbar-brand {  
    display: flex;
    align-items: center;
  }

  .top-nav-collapse {
    background: #0e0e0e;
  }
  
  .navbar-brand img {
    width: 120px;
    height: auto;
    margin-right: 0px;
  }

  .custom-navbar .navbar-nav.navbar-nav-first {   
    margin-left: 8em;
  }

  .custom-navbar .navbar-nav.navbar-right li a {
    padding-right: 8px;
    padding-left: 8px;
  }

  /* --- FIXED BUTTON STARTS HERE --- */
  .custom-navbar .section-btn {
    display: inline-block !important; /* Prevents stretching */
    background: #ff0000;              /* Brand Red */
    padding: 10px 20px !important;    /* Sleek pill padding */
    margin-left: 1em;
    border-radius: 12px !important;   /* Pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
  }

  .custom-navbar .section-btn:hover {
    background: #ffffff; 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .custom-navbar .section-btn a {
    padding: 0 !important;            /* Resets default nav padding */
    color: #ffffff !important;        /* Force white text */
    font-weight: 700 !important;      /* Bold font */
    text-transform: normal;
    font-size: 13px;
    line-height: normal;
  }

  .custom-navbar .nav .section-btn a:hover {
    color: #ff0000 !important;
  }
  /* --- FIXED BUTTON ENDS HERE --- */

  .custom-navbar .nav li a {
    font-size: 14px;
    font-weight: 300;
    color: #0e0e0e;
    letter-spacing: -0.5px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #ff0000;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #ff0000;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
    background-color: #0e0e0e;
  }
	
  .custom-navbar .navbar-toggle .icon-bar {
    background: #ffffff;
  }
  
  @media(min-width:768px) {
    .custom-navbar {

      background: 0 0; 
    }
	
    .custom-navbar.top-nav-collapse {
      background: #0e0e0e;
      border-bottom: 1px solid #232323; /* ADD THIS LINE: Darker grey for black background */
      padding: 12px 0;
    }

    .top-nav-collapse .nav li a {
      color: #ffffff;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff !important;
    }
  }


  /*---------------------------------------
      HOME              
  -----------------------------------------*/

  #home {
    background: #f7f7f7;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 8.80em;
    text-align: left;
  }

.home-info .section-btn {
  background: #ffffff;      /* Ensure it has a solid background */
  border: 1px solid #232323; /* Using your soft black */
  color: #0e0e0e;           /* Using your deep black */
  padding: 12px 20px;
  border-radius: 12px;      /* Matches your pill shape */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooths the hover transition */
  display: inline-block; /* Ensures margin works correctly */
  margin-right: 18px;
  margin-bottom: 0;   /* This creates the gap you need */
  
  /* The Shadow: Using #232323 with low opacity for a modern look */
  box-shadow: 0 4px 12px rgba(14, 14, 14, 0.25);
}

/* Hover effect to make it interactive */
.home-info .section-btn:hover {
  background-color: #ffffff; /* Your new light grey */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 8px 20px rgba(14, 14, 14, 0.2);
  border-color: #0e0e0e;
}

  .home-info span {
    display: inline-block;
    vertical-align: middle;
    color: #232323;
    font-weight: 700;
    margin-left: 0;
  }

  .home-info span small {
    display: block;
    font-weight: 500;
  }

  .hero-image {
    flex: 1;
    text-align: right;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .home-info {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-top: 2em;
    text-align: center;
  }

  .hero-image img {
    max-width: 90%;
  }
  
  #welcome-text {
    color: #232323;
    font-size: 18px;
    font-weight: normal;
    display: inline-block;
    padding-left: 0.0;
    margin-bottom: 50px;
  }

  .typing {
	border-right: 2px solid black;
	animation: blink 0.7s infinite;
  }
  
  @keyframes blink {
	0% {
	 border-color: #0e0e0e
  }

  50% {
    border-color: transparent;

  }

  100% {
    border-color: #0e0e0e;
  }
  
 }

/* --- Mobile: Gap Added --- */
@media screen and (max-width: 767px) {
  .home-info .section-btn {
	margin-right: 0;
    margin-bottom: 12px; /* Only pushes the "Call Us" section down on mobile */
  }
}



  /*---------------------------------------
      HEADER ONE         
  -----------------------------------------*/
  #header-one {
    background: #0e0e0e;
    margin-top: 100px;
  }

  #header-one ,
  #sections-detail {
    text-align: left;
  }

  #header-one {
    background: #0e0e0e;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45vh;
    color: #ffffff;
    position: relative;
    padding-top: 6.4em;
  }

  #header-one  h1 {
    color: #ffffff;
  }
  
  #header-one  p {
    color: #757575;
  }
 }
	


  /*---------------------------------------
      HEADER TWO         
  -----------------------------------------*/
  #header-two {
    background: #f7f7f7;
  }

  #header-two ,
  #sections-detail {
    text-align: left;
  }

  #header-two {
    background: #f7f7f7;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70vh;
    color: #0e0e0e;
    position: relative;
    padding-top: 10.4em;
  }

  #header-two  h1 {
    color: #0e0e0e;
  }
  
  #header-two  p {
    color: #232323;
  }
 }
	


  /*---------------------------------------
      HEADER THREE         
  -----------------------------------------*/
  #header-three {
    background: #f7f7f7;
  }

  #header-three ,
  #sections-detail {
    text-align: left;
  }

  #header-three {
    background: #f7f7f7;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45vh;
    color: #0e0e0e;
    position: relative;
    padding-top: 6em;
  }

  #header-three  h1 {
    color: #0e0e0e;
  }
  
  #header-three  p {
    color: #232323;
  }
 }
	


/*---------------------------------------
    LOGO SLIDER (INFINITE MARQUEE)             
-----------------------------------------*/
#clients {
    padding: 60px 0;
    background: #ffffff;
}

.logo-slider {
    overflow: hidden;
    padding: 40px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

/* Creating the fade effect on the edges */
.logo-slider::before,
.logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}
.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    width: calc(250px * 10); /* Adjust based on (logo width * number of slides) */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Space around the logo */
}

.slide img {
    background: #ffffff;
    border: 1px solid #ececec; /* The subtle grey border */
    border-radius: 15px;       /* Matches your brand's soft corners */
    padding: 30px;             /* Space inside the border */
    width: 100%;
    max-width: 200px;
    height: 120px;             /* Fixed height keeps the row uniform */
    object-fit: contain;       /* Ensures logos aren't stretched */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Soft shadow like your reference */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

/* Hover effect: Pop out and show color */
.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-color: #ff0000;      /* Border turns red on hover */
    transform: translateY(-5px); /* Lifts up slightly */
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.1);
}

/* The Animation Loop */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); } /* Moves by half the total slides */
}



  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about {
    background: #0e0e0e;  /* fallback for old browsers */
    text-align: left;
    padding-bottom: 0;
  }

  .about-info .section-title h2 {
    color: #ffffff;
  }
  
  .about-info .section-title h3 {
    color: #ffffff;
    padding-bottom: 1em;
  }
  
  #about .about-info:first-child {
    margin-right: 40px;
  }

  .about-info .section-title {
    margin: 10px 0 20px 0;
  }

  .about-info {
    margin-top: 30px;
  }

  .skill-thumb strong {
    display: inline-block;
    margin-bottom: 10px;
  }

  .skill-thumb .progress {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: none;
    height: 3px;
    margin-bottom: 25px;
  }

  .skill-thumb .progress-bar {
    background: #ff0000;
    box-shadow: none;
  }

  .about-image {
	bottom: 2px;
  }
	


  /*---------------------------------------
      WORK             
  -----------------------------------------*/

  .work-info img {
    width: 100%;
    border-radius: 100%;
  }

  #work .work-thumb {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 17px;
  }

  .work-thumb .work-info {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .work-thumb .work-info:after {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    background: #ff0000;
    opacity: 0;
    transition: 0.5s;
  }

  .work-thumb .work-info:hover::after {
    opacity: 0.9;
  }

  .work-thumb .work-info h3,
  .work-thumb .work-info small {
    transform: translateY(100%);
    opacity: 0;
    display: block;
    transition: 0.5s 0.2s;
    color: #ffffff;
    z-index: 2;
    position: relative;
  }

  .work-thumb .work-info small {
    color: #d9d9d9;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 3px;
  }

  .work-thumb:hover .work-info h3,
  .work-thumb:hover .work-info small {
    transform: translateY(0px);
    opacity: 1;
  }



  /*---------------------------------------
      REVIEWS THEME FIX            
  -----------------------------------------*/
#reviews {
    padding: 100px 0;
    background: #f9f9f9; 
    text-align: center;
    overflow: hidden; /* Prevents horizontal scrollbar on the page */
}

#reviews h2 {
    font-family: 'AvantGarde Bk BT', sans-serif;
    font-weight: 800;
    font-size: 38px;
    letter-spacing: -1px;
}

#reviews .highlight {
    background: #ff0000;
    color: #fff;
    padding: 2px 12px;
    border-radius: 8px;
}

/* Container that hides the extra cards */
.review-wrapper {
    max-width: 1000px; /* Slightly wider to fit two cards comfortably */
    margin: 50px auto;
    overflow: hidden; 
    position: relative;
}

/* The long row of cards */
.review-slider {
    display: flex;
    transition: transform 0.5s ease-out; /* Smooth slide effect */
    gap: 20px; /* Space between cards */
}

/* Updated for 2 reviews at a time */
.review-card {
    flex: 0 0 calc(50% - 10px); /* Sets width to 50% minus half the gap */
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 5px solid #ff0000;
    box-sizing: border-box;
    text-align: center;
}

/* Make it show only 1 card on mobile for better readability */
@media screen and (max-width: 767px) {
    .review-card {
        flex: 0 0 100%;
    }
}

/* Add this to the section to stop it from leaking */
#reviews-section {
    overflow-x: hidden; 
    width: 100%;
    position: relative;
}

/* Ensure the window also hides the extra cards */
.review-window {
    width: 100%;
    overflow: hidden; 
    padding: 20px 0; /* Gives the shadows room to breathe */
}

/* Fix for Mobile Menu alignment */
@media screen and (max-width: 767px) {
    .review-card {
        flex: 0 0 100%; /* Ensure cards don't try to sit side-by-side on small screens */
    }
}

.quote-icon {
    font-size: 80px;
    font-family: serif;
    color: #ff0000;
    line-height: 0;
    margin-bottom: 20px;
    opacity: 0.2;
}

.review-card p {
    font-size: 20px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.review-footer h4 {
    font-family: 'AvantGarde Bk BT', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 10px;
}

.stars {
    color: #ff0000;
    font-size: 18px;
    margin-bottom: 5px;
}

.stars span {
    color: #ddd; 
}

/* Nav Styling */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.prev-btn, .next-btn {
    background: #0e0e0e;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: #ff0000;
    transform: scale(1.1);
}



  /*---------------------------------------
      SERVICES INTRO        
  -----------------------------------------*/
  .services {
    padding: 60px 0;
  }

  /* Accordion Item */
  .accordion-item {
    background: #ffffff;
    border: 1px solid #232323;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  /* Accordion Header */
  .accordion-header {
    display: flex;
    justify-content: space-between; /* left content + right arrow */
    align-items: center;
    width: 100%;
    padding: 25px 18px;
    background: #f7f7f7;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 300;
    font-size: 1.5rem;
    transition: background 0.3s, color 0.3s;
  }

  /* Left side (icon + text) */
  .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Font Awesome icon */
  .header-left i {
    font-size: 2rem;
    color: #232323;
    transition: color 0.3s ease;
  }

  /* Toggle Arrow */
  .toggle-arrow {
    font-size: 1rem;
    color: #ff0000;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  /* Accordion Body */
  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 18px;
    color: #757575;
    line-height: 1.5;
    background: #ffffff;
  }

  /* Show body when active */
  .accordion-item.active .accordion-body {
    max-height: 300px; /* enough space for text + button */
    padding: 15px 18px;
  }

  /* Active state styles */
  .accordion-item.active .accordion-header {
    background: #ff0000;
    color: #fff;
  }

  .accordion-item.active .header-left i {
    color: #fff;
  }

  .accordion-item.active .toggle-arrow {
    transform: rotate(180deg);
    color: #fff;
  }

  /* Call-to-action button */
  .accordion-body .btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid #232323;
    text-decoration: none;
    background: #ffffff;
    color: #232323;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .accordion-body .btn:hover {
    background: #ff0000;
    border: none;
    transform: translateY(-2px);
  }
 }



  /*---------------------------------------
      BLOG             
  -----------------------------------------*/

  #blog {
    background: #757575;
  }

  #blog-header,
  #blog-detail {
    text-align: left;
  }

  #blog-header {
    background: #f7f7f7;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 65vh;
    color: #ffffff;
    position: relative;
    padding-top: 10em;
  }

  #blog-header h2 {
    color: #232323;
  }
  
  #blog-header p {
    color: #232323;
  }

  .blog-thumb {
    background: #ffffff;
    -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    text-align: left;
    margin-bottom: 30px;
    height: 250px;
  }

  .media.blog-thumb .media-left {
    width: 45%;
  }

  .blog-thumb small {
    color: #ff0000;
    font-weight: 500;
    display: block;
  }

  .blog-thumb small .fa {
    margin-right: 5px;
  }

  .blog-thumb h4 {
    margin-top: 2px;
    margin-bottom: 0px;
  }

  #blog-detail h2 {
    padding: 25px 0 10px 0;
  }

  .media-body blog-info {
    padding-bottom: 5px;
  }

  .blog-info {
    padding: 75px 25px;
  }

  .blog-info h3 {
    margin: 0;
    padding: 8px 0 6px 0;
    text-transform: capitalize;
  }

  .blog-info .section a {
    background: transparent;
    color: #232323;
	border: transparent;
    text-align: left;
	font-size: 14px;
    margin-top: 0;
  }

  .blog-info .section a:hover {
    background: transparent;  /* fallback for old browsers */
    color: #ff0000;
  }

  .blog-thumb ul {
    margin: 32px 12px 22px 0px;
  }

  .blog-thumb ul li {
    list-style: square;
    font-weight: normal;
    padding: 4px 12px 4px 0px;
  }

  .blog-social-share {
    text-align: center;
    padding-top: 22px;
  }

  .blog-social-share .btn {
    border-radius: 14px;
    border: none;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 20px 6px;
    padding: 10px 16px;
  }

  .blog-social-share .btn-primary {
    background: #25d366;
  }

  .blog-social-share .btn-success {
    background: #ff0000;
  }

  .blog-social-share .btn-danger {
    background: #757575;
  }

  .blog-social-share a .fa {
    padding-right: 4px;
  }

  .blog-ads {
    background: #757575;
    border-right: 4px solid #232323;
    padding: 42px;
    text-align: center;
    margin: 26px 0 26px 0;
  }

  .blog-ads h4 {
    font-size: 18px;
	color: #ffffff;
  }



  /*---------------------------------------
      OUR FULL CREATIVE SERVICES
  -----------------------------------------*/

  .full-service {
    background: #ffffff;
	padding-Left: 0;
    padding-right: 0;
  }

  .full-service-card {
    background: #f7f7f7;
    border: 1px solid #232323;
    margin-bottom: 15px;
    border-radius: 18px;
    padding: 30px;
    text-align: left; /* ✅ Ensure all text is aligned left */
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    height: 100%; /* ✅ Keeps all cards equal height */
    display: flex;
    flex-direction: column;
  }

  .full-service-card:hover {
    border-color: #ff0000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
  }

  .full-service-header {
    display: flex;
    align-items: center;
    gap: 12px; /* space between icon and h4 */
    margin-bottom: 3px;
  }

  .full-service-icon {
    font-size: 2rem;
    color: #232323;
  }

  .full-service-card h4 {
    color: #232323;
    margin: 0; /* remove default gap */
    font-weight: 700;
  }

  .full-service-card p {
    color: #232323;
    font-size: 1.20rem;
    margin-bottom: 15px;
    text-align: left;
  }

  .full-service-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
	padding-left: 34px;
  }

  .full-service-card ul li {
    color: #757575;
    padding: 3px 0;
    position: relative;
    font-size: 0.95rem;
  }

  .full-service-card ul li::before {
    content: "▢";
    font-size: 1rem;
    color: #ff0000;
    margin-right: 8px;
  }



/*---------------------------------------
    PORTFOLIO GROUP
-----------------------------------------*/

.work-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-auto-rows: 150px;                 /* Height of the rows */
  gap: 0;                             /* Space between images */
  padding: 20px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;                     /* Makes images fill the box perfectly */
  border-radius: 8px;                    /* Clean agency look */
}

/* Make image 6/7 span 2 columns and 1 row */
.item-big {
  grid-column: span 2; 
  grid-row: span 1;
}

/* --- OUR WORK MOSAIC GRID --- */
.work-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    grid-auto-rows: 300px;                /* Base height for each row */
    gap: 10px;                            /* The small white gap between images */
    padding: 10px;
}

.work-thumb {
    overflow: hidden;
    position: relative;
}

.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;                    /* This is the secret for clean grids */
    transition: transform 0.5s ease;
}

/* HOVER EFFECT: Subtle Zoom */
.work-thumb:hover img {
    transform: scale(1.1);
}

/* THE SPAN: Image 6 & 7 combined */
.thumb-big {
    grid-column: span 2;                  /* Takes up 2 columns wide */
}

/* Ken Burns Animation */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.ken-burns-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 20s infinite alternate;
}

/* Red Tint Overlay */
.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0); /* Start transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.4s ease;
    opacity: 0; /* Hide content initially */
}

/* Interaction: One Click/Hover */
.portfolio-item:hover .project-overlay,
.portfolio-item:active .project-overlay {
    background: rgba(255, 0, 0, 0.7); /* The Red Tint */
    opacity: 1;
}

.overlay-content h3 {
    color: #fff;
    font-family: 'AvantGarde Bk BT', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .overlay-content h3 {
    transform: translateY(0);
}

.see-more-btn {
    background: #fff;
    color: #ff0000;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
}

/* --- RESPONSIVE SETTINGS --- */

/* For Tablets (2 columns) */
@media (max-width: 991px) {
    .work-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
    .thumb-big {
        grid-column: span 2;              /* Stays wide on tablets */
    }
}

/* For Mobile (1 column) */
@media (max-width: 767px) {
    .work-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .thumb-big {
        grid-column: span 1;              /* Becomes full width on phones */
    }
}



/*---------------------------------------
   CLIENT             
-----------------------------------------*/
.client {
  padding: 60px 0;
  background: #f7f7f7;
  font-family: Arial, sans-serif;
}

/* Logo */
.client-logo img {
  max-width: 180px;
}

/* Details always left */
.client-details {
  text-align: left;
}

/* Hero */
.client-hero img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

/* Mockups */
.client-mockups img {
  width: 100%;
  border-radius: 8px;
}

/* Text */
.client h3,
.client h4,
.client p {
  text-align: left;
  margin: 0;
}

/* Video */
.client-video video {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-top: 20px;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .client-logo img {
    max-width: 120px; /* smaller logo on mobile */
  }
  .client-details {
    margin-top: 10px;
    text-align: left !important; /* force left on mobile too */
  }
}

    
  
/*---------------------------------------
      CONTACTS              
-----------------------------------------*/

#contact {
  background: #0e0e0e; 
  margin: 0px auto;
  margin-top: 100px;
  padding: 80px 0; 
}

#contact .section-title h2,
#contact .section-title p {
  color: #ffffff;
}

.google-map {
  border: 2px solid #232323;
  border-radius: 20px; 
  width: 300px;
  height: 270px;
  overflow: hidden;
  margin: 0 auto;
}

.google-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

#contact .form-control {
  background: #f7f7f7; 
  border: 1px solid #ff0000;
  border-radius: 10px;
  box-shadow: none;
  color: #0e0e0e; 
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 20px;
  padding-left: 15px;
  transition: all 0.3s ease;
  /* Removes default blue/orange outlines in all browsers */
  outline: none !important;
}

/* Fix for placeholders in text inputs */
#contact .form-control::placeholder {
  color: #757575;
  opacity: 1;
}

/* Focus state: Replaces blue with a clean white/red glow */
#contact .form-control:focus {
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
}

#contact input,
#contact select {
  height: 55px;
}

/* DROPDOWN SPECIFIC FIXES */
#contact select {
  color: #757575; /* Matches other placeholders */
  cursor: pointer;
}

/* Removes the blue highlight on the text itself inside the select */
#contact select:focus {
  color: #0e0e0e;
}

/* Ensures the options list doesn't look weird */
#contact select option {
  background: #ffffff;
  color: #0e0e0e;
}

/* The "Bold" Submit Button */
#contact input[type='submit'] {
  background: #ff0000;
  border: none;
  border-radius: 12px; 
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  margin-top: 10px;
}

#contact input[type='submit']:hover {
  background: #ffffff;
  color: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

#contact select.form-control {
    color: #757575 !important; /* Forces the placeholder grey */
    background-color: #f7f7f7 !important;
}

#contact .form-control:focus {
    outline: none !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.4) !important; /* Forced Red Glow */
}



  /*---------------------------------------
     QUOTES             
  -----------------------------------------*/
  .quote {
    background: #232323;
    border-right: 4px solid #ff0000;
    border-left: 4px solid #ff0000;
    padding: 42px;
    text-align: center;
    margin: 0px 0 0px 0;
  }

  .quote h5 {
    font-size: 16px;
	color: #ffffff;
  }
  
  .quote p {
    colo: #ffffff;
  }
  
  
  
  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    background: #0e0e0e;  /* fallback for old browsers */
    position: relative;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  footer h1 {
    color: #ffffff;
  }
  
  footer h2 {
    color: #ffffff;
  }

  .footer-link {
    margin: 0;
    padding: 0;
  }

  .footer-link li {
    display: block;
    list-style: none;
    margin: 5px 10px 5px 0;
  }

  .footer-thumb small {
    color: #ffffff;
	font-weight: 600;
    margin-bottom: 0;
  }
  
  footer p a,
  footer span,
  .footer-link li a {
    color: #757575;
  }
  
  footer p a,
  .footer-link p a {
    color: #757575;
  }

  .copyright-text p,
  .footer-bottom .phone-contact p {
    font-size: 14px;
  }

  .footer-info p {
    margin-right: 4em;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 5em;
    padding-top: 3em;
  }

  .footer-bottom .phone-contact,
  .footer-bottom .social-icon {
    display: inline-block;
    vertical-align: top;
  }

  .footer-bottom .phone-contact {
    margin-right: 40px;
  }

  .footer-bottom .phone-contact span {
    font-weight: 500;
    display: inline-block;
    margin-left: 20px;
  }


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 100px;
    color: #757575;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    margin: 5px 10px;
  }

  .social-icon li a:hover {
    color: #ff0000;
  }


  /*---------------------------------------
      MODAL FORM             
  -----------------------------------------*/

  @media (min-width: 992px) {
    .modal-dialog {
      width: 320px;
    }
  }

  .modal-open .modal {
    padding-left: 0 !important;
  }

  .modal-dialog .modal-content {
    background: #0e0e0e;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #757575, #0e0e0e);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #757575, #0e0e0e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border: none;
    border-radius: 1px;
    text-align: center;
    position: relative;
    padding: 2em;
  }

  .modal-header, .modal-footer {
    border-bottom: 0;
    padding: 0;
  }

  .modal-dialog .modal-body {
    padding: 0;
  }

  .modal-dialog .modal-body a {
    color: #757575;
  }

  .modal .close {
    color: #757575;
    font-size: 40px;
    font-weight: 300;
    text-shadow: none;
    opacity: 1;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    outline: none;
  }

  .modal-dialog .modal-title {
    margin-bottom: 20px;
  }

  .modal-dialog .modal-title h2 {
    color: #ffffff;
  }

  .modal-dialog .nav-tabs {
    display: inline-block;
  }

  .modal-dialog .nav-tabs > li > a {
    border: 0;
    color: #757575;
    margin-right: 0;
  }

  .modal-dialog .nav-tabs > li.active > a, 
  .modal-dialog .nav-tabs > li.active > a:hover, 
  .modal-dialog .nav-tabs > li.active > a:focus,
  .modal-dialog .nav>li>a:focus, 
  .modal-dialog .nav>li>a:hover {
    color: #ffffff;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ff0000;
  }

  .modal-dialog .tab-content {
    padding-top: 20px;
  }

  .modal-dialog form .form-control {
    border-radius: 5px;
    border: 1px solid #757575;
    background: transparent;
    box-shadow: none;
    margin: 15px 0 15px 0;
    height: 50px;
  }

  .modal-dialog form .form-control:hover,
  .modal-dialog form .form-control:focus {
    border-color: #232323;
  }

  .modal-dialog form input[type="submit"] {
    background: #ff0000;
    border-color: transparent;
    border-radius: 17px;
    color: #ffffff;
    margin-top: 20px;
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 1170px) {

    .custom-navbar .navbar-nav.navbar-nav-first {
      margin-left: inherit;
    }
  }

  @media screen and (max-width: 991px) {

    h3 {
      font-size: 1.2em;
    }

    p {
      font-size: 13px;
    }

    #home {
      text-align: center;
    }

    .home-info {
      margin-bottom: 0;
    }

    .custom-navbar .nav li a {
      font-size: 13px;
      padding-right: 11px;
      padding-left: 11px;
    }

    .custom-navbar .section-btn {
      margin-left: 1em;
    }

    .blog-thumb {
      height: inherit;
    }

    .blog-info {
      padding: 45px 25px;
    }

    .media.blog-thumb .media-left {
      display: block;
      width: 100%;
      padding-right: 0;
      overflow: hidden;
    }

    .media.blog-thumb .media-left {
      height: 150px;
    }

    .media.blog-thumb .media-left img {
      position: relative;
      bottom: 10em;
    }

    #work .work-thumb,
    .footer-thumb {
      margin-top: 20px;
      margin-bottom: 30px;
    }
  }

  @media only screen and (min-width: 640px) and (max-width: 767px) {

    #blog-header {
      height: 100vh;
    }
	
    .media.blog-thumb .media-left {
      height: 450px;
    }

    .media.blog-thumb .media-left img {
      position: relative;
      bottom: 10em;
    }
  }

  @media screen and (max-width: 767px) {

    .custom-navbar {
      background: #0e0e0e;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 5px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #ffffff;
      font-weight: 600;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #ffffff;
    }

    .custom-navbar .navbar-nav.navbar-right li {
      display: inline-block;
    }

    .custom-navbar .section-btn {
      display: block !important;
      width: 45%;
      margin: 10px auto 10px auto;
      padding: 10px;
    }

    .custom-navbar .section-btn a {
      color: #ffffff !important;
    }
	
    .home-info span {
      margin-top: 5px;
    }

    #about .about-info:first-child {
      margin-right: 0;
    }

    .about-info {
      margin: 40px 0 40px 0;
    }

    #header-one {
      margin-top: 70px;
    }
  
    #contact {
      margin-top: 70px;
    }
	
    .google-map {
      margin-top: 50px;
    }

    footer {
      text-align: center;
    }

    .footer-info p,
    .footer-bottom .phone-contact {
      margin-right: 0;
    }
  }

  @media screen and (max-width: 639px) {

    h1 {
      font-size: 2em;
    }

    .highlight {
	margin-bottom: 0.3em;
    }	
	
    #welcome-text {
	margin-bottom: 0em;
    }
  	
    .media.blog-thumb .media-left {
      height: 220px;
    }

    .media.blog-thumb .media-left img {
      position: relative;
      bottom: 6em;
    }
  }
