/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,700&display=swap");

body {
    font-family: "Nunito Sans", sans-serif;
    /* font-family: "Space Grotesk"; */
    /* font-family: "PT Serif", serif; */
    /* Example: Using a Google Font. Add @import in HTML or CSS top */
    color: #444444;
    line-height: 1.6;
}

a {
    color: #e9513a;
    text-decoration: none;
}

a:hover {
    color: #f86d55;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;

    /* Example: Using a Google Font for headings */
    color: #333;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-lg {
    padding: 100px 0;
}

.section-title {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.1rem;
    /* Responsive font size */
}

.social-title {
    font-weight: 500;
    color: #2c3e50;
    font-size: 2.1rem;
}

.section-subtitle {
    color: #e9513a;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.expectsection-padding {
    padding: 100px 180px;
}

.offer-padding {
    padding: 60px 180px;
}

.digital-padding {
    padding: 60px 180px 100px;
}

.news-padding {
    padding: 50px 180px;
}

.page-hr {
    margin: 34px 0 5px;
    color: #a5b8c5;
}

.pagesection-top {
    background: url("../images/hero/page-bg.jpg") center/cover no-repeat;
}

.arrow-list {
    list-style: none;
    padding-left: 0;
    font-family: "Segoe UI", sans-serif;
}

.arrow-list li {
    position: relative;
    display: flex;
    align-items: center; /* Vertical centering */
    padding: 6px 20px 6px 40px; /* Balanced vertical padding */
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}

.arrow-list li::before {
    content: "➤"; /* Can use →, ›, ⮞, etc. */
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    /* color: #ff6600; */
    color: #e9513a;
    font-size: 14px;
}

.list1 li {
    padding: 3px 20px 1px 40px;
    margin-bottom: 12px;
}

.social-content {
    line-height: 2.2;
}

.socia-media .product-img {
    margin-top: 30px;
}

/* digital - marketing */

.services-highlight {
    font-size: 16px;
    line-height: 1.8;
}

.services-list {
    display: inline-block;
    background: linear-gradient(to right, #ee3f2b, #ee947d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.experience-text {
    display: block;
    margin-top: 7px;
    font-size: 17px;
    color: #333;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-toggle {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    padding: 14px 20px;
    text-align: left;
    font-weight: 500;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.accordion-toggle:hover {
    background: #fdf2ef;
    /* border-color: #e9513a; */
    color: #e9513a;
}

.accordion-toggle .icon {
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s;
}

.accordion-toggle.active {
    background: #fdf2ef;
    color: #e9513a;
    /* border-color: #e9513a; */
}

.accordion-toggle.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding: 12px 20px;
    background: #fff8f7;
    /* border-left: 3px solid #e9513a; */
    border-radius: 0 0 6px 6px;
    margin-top: -6px;
    animation: fadeIn 0.3s ease;
    font-size: 14px;
    color: #555;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-image {
    position: sticky;
    top: 20px;
    max-height: 450px;
    margin-top: 85px;
}

.nfc {
    margin-top: 100px;
    overflow-y: auto;
}

/* graphic design */

.graphic-design-tabs {
    padding: 20px;
    border-radius: 10px;
}

/* .tab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 30px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  color: #999;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: #e9513a;
  transform: translateY(-3px) scale(1.05);
}

.tab-btn.active {
  color: #e9513a;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #e9513a, #ff7e5f);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
} */

.tab-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
    position: relative;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 5px;
    font-weight: 600;
    color: #999; /* Lighter default color */
    cursor: pointer;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn:hover {
    color: #e9513a;
}

.tab-btn.active {
    color: #e9513a;
}

.tab-buttons::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    /* background: #ddd;  */
}

.tab-btn::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: #e9513a;
    transition: width 0.3s ease, left 0.3s ease;
}

.tab-btn.active::before {
    width: 100%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.digital-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 131px;
}

.digital-card2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.digital-marketing .text-muted {
    line-height: 2;
}

#graphic-section {
    background-color: white !important;
    color: black;
}

/* Middle digital marketing */

.build-brand-section {
    position: relative;
    min-height: 60vh; /* Increased from 40vh for more height */
    background: linear-gradient(to left, #eb9f8c, #c6482a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    padding: 73px 20px 66px;
    margin-bottom: 50px;
    text-align: center;
}

.build-brand-section::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 0;
}

.build-brand-section > * {
    z-index: 1; /* Ensure content is above the gradient overlay */
}
.build-brand-section .contactus-section {
    background: linear-gradient(135deg, #e9513a, #ff7e5f);
    padding: 70px 20px;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.build-brand-section .contactus-contents h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.build-brand-section .contactus-contents p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.build-brand-section .brand-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 8px;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
}

.build-brand-section .brand-social-icons a:hover {
    background: #fff;
    color: #e9513a;
    transform: scale(1.2);
}

.build-brand-section .footer-contact {
    margin-top: 30px;
    font-size: 16px;
}

.build-brand-section .footer-contact li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.build-brand-section .footer-contact li:hover {
    transform: translateY(-2px);
}

.build-brand-section .footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.build-brand-section .footer-contact a:hover {
    color: #ffe3dc;
    text-decoration: underline;
}

.build-brand-section .footer-contact i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer .build-brand-section .footer-contact li:hover i {
    background: #fff;
    color: #e9513a;
    transform: rotate(10deg);
}

/*--------------------------------------------------------------
# Header & Navbar
--------------------------------------------------------------*/
/* Ensure the navbar takes full width */
.navbar-orange {
    background: linear-gradient(to right, #eb9f8c, #c6482a);

    width: 100%;
}


.nav-padding {
    padding: 10px 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
/* page navbar */

.navbar-page .nav-link,
.navbar-page .navbar-brand {
    color: rgb(252, 249, 249) !important;
}
/*
.navbar-page {
  background: url("../images/hero/page-bg.jpg") center/cover no-repeat;
} */

.navbar-orange .nav-link,
.navbar-orange .navbar-brand {
    color: rgb(252, 249, 249) !important;
}

.navbar-orange .dropdown-item {
    color: #000;
}

.navbar-orange .dropdown-menu {
    background-color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* .dropdown-toggle {
  background-color: #c05437;
  border: none;
} */

/* .dropdown-toggle:hover {
  background-color: #f05328;
} */
.navbar-orange .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000 !important;
}

.form-control::placeholder {
    color: #fff !important;
    opacity: 0.8;
}

.input-group-text {
    border-right: 0;
}

.form-control {
    background-color: transparent;
    border-left: 0;
    color: white;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.custom-search {
    background-color: rgba(255, 255, 255, 0.1); /* semi-transparent white */
    border-radius: 0.375rem;
    overflow: hidden;
}

.custom-search .input-group-text {
    background-color: transparent;
    border: none;
    color: #fff;
}

.custom-search input.form-control {
    background-color: transparent;
    color: #fff;
    border: none;
}

.custom-search input.form-control::placeholder {
    color: #fff;
    opacity: 0.8;
}

.nav-link.btn-light {
    background-color: #a7321d;
    width: 150%;
    color: #fff !important;
    border: none;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-link.btn-light:hover {
    background-color: #c63e25;
    color: #fff !important;
    transform: scale(1.05);
}

.nav-link.btn-light:active {
    transform: scale(0.95);
    background-color: #e9513a;
}


/*--------------------------------------------------------------
# Digital Landing Header & Navbar
--------------------------------------------------------------*/



.navbar.nav-digital-landing {
  background: transparent !important;
  box-shadow: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar.nav-digital-landing .nav-link,
.navbar.nav-digital-landing .navbar-brand {
  color: #fff !important;
}



/*--------------------------------------------------------------

#printer Header

--------------------------------------------------------------*/
.navbar.nav-printer-landing {
  background: transparent !important;
  box-shadow: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* White Text + Hover */
.navbar.nav-printer-landing .nav-link,
.navbar.nav-printer-landing .navbar-brand {
  color: #fff !important;
  transition: color 0.3s ease;
}

.navbar.nav-printer-landing .nav-link:hover,
.navbar.nav-printer-landing .navbar-brand:hover {
  color: #ebcc6d !important; /* highlight gold on hover */
}

/* Fix dropdown background + text */
.navbar.nav-printer-landing .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
}
.navbar.nav-printer-landing .dropdown-item {
  color: #fff;
}
.navbar.nav-printer-landing .dropdown-item:hover {
  background-color: #ebcc6d;
  color: #000;
}

/* Adjust brand logo for visibility */
.navbar.nav-printer-landing .navbar-brand img {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
  transition: transform 0.3s ease;
}
.navbar.nav-printer-landing .navbar-brand img:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    background: linear-gradient(to right, #eb9f8c, #c6482a);
    color: white;
    padding: 0 0 101px;
    min-height: 93vh;
    display: flex;
    align-items: center;
}

.hero-2 {
    background: url("../images/hero/bg-icon.png") no-repeat center top;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    padding: 0 20px 68px;
    transition: background-position 0.1s ease-out;
}

.hero-section .sub-heading {
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-section .hero-lsection1 {
    width: 38%;
    padding: 108px 0 0 33px;
}

.hero-section .hero-lsection1 .btn-light {
    background-color: black;
    width: 20%;
    border: none;
    color: white !important;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgb(93 91 91 / 30%);
}

.hero-section .hero-lsection1 .btn-light:hover {
    background-color: #1b1b1b;
    color: #fff !important;
    transform: scale(1.05);
}

.hero-section .hero-lsection1 .btn-light:active {
    transform: scale(0.95);
    background-color: black;
}
.hero-section h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-section .hero-contents {
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 110px;
}

.hero-section .lead {
    font-size: 1.1rem;
    font-weight: 300;
}

.hero-section .img-fluid {
    max-width: 95%;
    border-radius: 12px;
    padding-bottom: 0;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-section .custom-search {
    max-width: 400px;
}

.hero-input-btn {
    width: 100%;
    max-width: 400px;
    height: 40px;
    padding: 10px 15px;
    font-size: 0.95rem;
    border-radius: 8px;
    background-color: #000;
    color: white;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-input-btn:hover {
    transform: scale(1.02);
    background-color: #111; /* Slightly lighter */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* page hero */

.hero-pagesection {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.hero-pagecontents {
    position: relative;
    z-index: 1;
    max-width: 700px;
    width: 100%;
}

.hero-pagesection h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-pagesection .hero-pagepara a {
    color: white;
}
.hero-pagesection .hero-pagepara span a {
    color: black;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp a img {
    width: 65px;
    height: 65px;
    border: transparent;

    border-radius: 35%;
    /* box-shadow: 0 4px 12px rgb(221 212 212 / 30%); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp a img:hover {
    transform: scale(1.1);
    /* box-shadow: 0 6px 16px rgba(0,0,0,0.4); */
}

/* widgets */

.floating-widget {
    position: fixed;
    /* top: 0; */
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.widget-button {
    position: relative;
}

.widget-button a,
.widget-button i {
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.widget-button .wp i {
    font-size: 24px;
}

/* Individual backgrounds */
.widget-button.whatsapp-widget a {
    background: #25d366;
}
.widget-button.call a {
    background: #25d366;
}
.widget-button.email a {
    background: #ff6a00;
}

/* Hover Animations */
.widget-button a:hover,
.widget-button i:hover {
    transform: scale(1.2);
    /* box-shadow: 0 8px 16px rgba(0,0,0,0.3), 0 0 15px rgba(0,0,0,0.2); */
    filter: brightness(1.2);
}

.widget-button.whatsapp-widget a:hover {
    background: #1ebe5d;
}

.widget-button.call a:hover {
    background: #1ebe5d;
}

.widget-button.email a:hover {
    background: #e65c00;
}

.widget-button.close-btn .widget {
    cursor: pointer;
}
.widget-button.close-btn i:hover {
    background: #eee;
    color: #ff0000;
    transform: rotate(180deg);
}

.label {
    position: absolute;
    left: 60px;
    background: #fff;
    color: #333 !important;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.widget-button:hover .label {
    opacity: 1;
}

.contact-form-widget {
    display: none;
    position: absolute;
    left: 195px;
    bottom: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    width: 360px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.close-form {
    cursor: pointer;
    font-size: 20px;
    color: #999;
    transition: color 0.3s ease;
}

.close-form:hover {
    color: #333;
}

.contact-form-widget h4 {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
    color: #333;
}

.contact-form-widget input,
.contact-form-widget textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form-widget input:focus,
.contact-form-widget textarea:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    border-color: #a7321d;
}

.contact-form-widget textarea {
    resize: none;
    height: 80px;
}

.contact-form-widget button {
    background: linear-gradient(45deg, #a7321d, #dd7055);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form-widget button:hover {
    background: linear-gradient(45deg, #d84729, #e57f67);
    transform: scale(1.05);
}

.hero-section img[src$=".gif"] {
    transition: none !important;
    will-change: none !important;
}

#widgetIcon {
    width: 73px; /* Adjust as needed */
    height: auto;
    cursor: pointer;
}

.widget-button.close-btn .widget {
    width: 65px;
    height: 65px;
    font-size: 30px;
    border: transparent;
    border-radius: 50%;
    margin-left: -11px;
    background-color: #a7321d;
    /* box-shadow: 0 4px 12px rgb(221 212 212 / 30%); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*--------------------------------------------------------------
# Expectations Section
--------------------------------------------------------------*/

/* .expectsection-padding{
  padding: 100px 150px 100px 150px;
} */
/* .expectations-section .stats {
  margin-top: 1px;
} */

.expectations-section .stats .stat-item {
    /* margin-bottom: 20px; */
    text-align: center;
}

.expectations-section span {
    background: linear-gradient(to right, #ee3f2b, #ee947d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.expectations-section .stats h3 {
    font-size: 2.4rem;
    /* Responsive font size */
    font-weight: 700;
    color: #e9513a;
    margin-bottom: 5px;
}

.expectations-section .stats p {
    color: #555;
    font-size: 1rem;
    font-weight: 600;
}

.expectations-section .btn-dark {
    background-color: black;
    border-color: black;
    font-weight: 600;
    max-width: 192px;
    border-radius: 10px;
    font-size: 0.8rem;
    padding: 8px 14px 8px 15px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.expectations-section .btn-dark:hover {
    background-color: rgb(44, 43, 43);
    border-color: grey;
    transform: translateY(-2px);
}

.expectations-section .image-box1 {
    background: linear-gradient(
            to bottom right,
            rgba(242, 125, 96, 0.5) 0%,
            rgba(200, 46, 33, 0.5) 100%
        ),
        url("../images/about/it.png") no-repeat center center;
    background-size: cover;
    height: 700px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.expectations-section .image-box2 {
    background: linear-gradient(
            to bottom right,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.3) 100%
        ),
        url("../images/about/Printer.png") no-repeat center center;
    background-size: cover;
    height: 343px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.expectations-section .image-box3 {
    background: linear-gradient(
            to bottom right,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.3) 100%
        ),
        url("../images/about/Digita-marketing.png") no-repeat center center;
    background-size: cover;
    height: 342px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.expectations-section .section-title,
.section-subtitle {
    text-align: start;
}

/* .expectations-section .image-box1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(242, 125, 96, 0.5) 0%, rgba(200, 46, 33, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
} */

/* .expectations-section .image-box1:hover::before {
    opacity: 1;
} */

.expectations-section .image-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
    padding: 15px;
    border-radius: 6px;
    transition: color 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 269px;
}

.expectations-section .image-content h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.expectations-section .image-content p {
    margin: 0;
    font-size: 16px;
}

.expectations-section .about-box {
    background-color: #f15c34;
    padding: 10px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
}

.expectations-section .about-box h6 {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 16px;
}

.expectations-section .about-box1 {
    height: 300px;
    object-fit: cover;
}

.expectations-section .about-box-download {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.expectations-section .about-box-download p {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 16px;
}

.expectations-section .about-box-download .btn {
    background-color: #99381e;
    color: #f29c84;
    border-radius: 50%;
}

.expectations-section .about-card {
    position: relative;
    padding: 0.4rem;
}

.expectations-section .about-card .about-iconimg {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    object-fit: cover;
}

.expectations-section .about-card .aboutcard-title {
    color: #f15c34;
    font-weight: 600;
}

.expectations-section .about-content {
    line-height: 1.9;
    font-size: 16px;
}

.expectations-section .home-about-content {
    line-height: 1.7;
    font-size: 15px;
    margin-top: -28px;
}

.expectations-section .about-bottomimg {
    padding-bottom: 12px;
    height: 466px;
}

.timeline-wrapper-horizontal {
    position: relative;
}

.timeline-wrapper-horizontal::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        red,
        red 5px,
        transparent 5px,
        transparent 10px
    );
    transform: translateY(-50%);
    z-index: 0;
}

/*--------------------------------------------------------------
# Latest News Section
--------------------------------------------------------------*/

.latest-news-section {
    padding: 3rem 0;
}

.latest-news-section .section-subtitle {
    color: #e9513a;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.latest-news-section span {
    background: linear-gradient(to right, #ee3f2b, #eb9f8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Container for carousel */
.latest-news-section .custom-carousel-container {
    position: relative;
    overflow: hidden;
}

/* Carousel track */
.latest-news-section .custom-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Cards */
.latest-news-section .custom-card {
    flex: 0 0 auto;
    width: calc(100% / 5); /* Show 5 cards in desktop */
    box-sizing: border-box;
    padding: 0 0.75rem;
}

/* News cards styling */
.news-card {
    position: relative;
    overflow: hidden;
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
}

.latest-news-section .news-card .card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
    display: block;
}
.latest-news-section .news-card .card-body {
    padding: 1rem;
    background-color: white;
    z-index: 1;
    position: relative;
}

.latest-news-section .badge {
    background-color: #3b82f6;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 0.75rem;
    align-self: flex-start;
    font-weight: 600;
    text-transform: uppercase;
}

.latest-news-section .card-title {
    color: #f1f5f9;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.latest-news-section .card-text {
    color: #e2e8f0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.latest-news-section .read-text {
    color: #ef4444;
    font-weight: 600;
    text-decoration: none;
}

.latest-news-section .read-text:hover {
    text-decoration: underline;
}

.latest-news-section .custom-card {
    flex: 0 0 auto;
    width: calc(100% / 5); /* 4 cards in view */
    box-sizing: border-box;
    padding: 0 0.75rem;
    margin-right: 20px;
}

.latest-news-section .arrow-icon {
    background-color: #f3f0ec;
    color: black;
    padding: 1rem;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 50%;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.news-card .hover-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    overflow: hidden;
    background-color: #f86d55; /* Orange */
    transition: height 0.4s ease;
    padding: 0 1rem;
    z-index: 2;
}

/* On hover: expand the panel */
.news-card:hover .hover-panel {
    height: 220px; /* Show enough to cover bottom + part of image */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Paragraph inside panel */
.hover-panel h5 {
    color: white !important;
}

.hover-panel a {
    color: white !important;
}

.hover-panel .arrow-icon {
    background-color: black;
    color: white;
    transform: translateX(3px);
}
.news-card .hover-panel p {
    color: white;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work-section .process-item .icon-bg {
    background-color: rgba(219, 64, 41, 0.979);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-bg img {
    width: 25px;
}
/* .custom-full-width {
  max-width: 100% !important;
  width: 100% !important;
} */

.how-we-workpadding {
    margin-left: -62px;
}

.how-we-workpadding img {
    max-height: 800px;
}
/* .how-we-work-section .section-title {
  font-size: 3rem;
} */
.how-we-work-section .service-row {
    margin-top: 30px;
}

.navbar .dropdown-menu .read-moretext {
    color: red;
}

.navbar .dropdown-menu .read-moretext:hover {
    background-color: white;
    color: #ee5353;
}

.section-title span {
    background: linear-gradient(to right, #ee3f2b, #ee947d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.how-we-work-section .process-icon {
    color: #e9513a;
    font-size: 1.8rem;
}
.how-we-work-section b {
    font-weight: 800;
}

.how-we-work-section h5 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.how-we-work-section p {
    font-size: 0.95rem;
}

.service-content {
    display: flex;
    justify-content: space-between;
}

.how-we-work-section .stats .stat-item {
    margin-bottom: 20px;
}

.how-we-work-section .stats h3 {
    font-size: 1.5rem;
    /* Responsive font size */
    font-weight: 600;

    margin-bottom: 5px;
}

.how-we-work-section .stats p {
    color: #555;
    font-size: 1rem;
}
.how-we-work-section .head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.how-we-work-section .section-description {
    font-weight: 600;
    font-size: 16px;
    color: black;
}
/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/

.ctasection-padding {
    padding: 63px;
}

.cta-section {
    background: linear-gradient(to left, #eb9f8c, #c6482a);
    color: white;
}
.cta-section .arrow-list li::before {
    color: white;
}

.cta-section .arrow-list li {
    color: white;
}

.cta-section b {
    font-weight: 800;
}
.cta-section .sub-heading-light {
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section span {
    background: linear-gradient(to right, #ee3f2b, #eb9f8c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-section .cta-title {
    font-weight: 500;
    color: white;
    font-size: 2.3rem;
    /* Responsive */
}

.cta-section .cta-item {
    /* max-width: 100px; */
    /* Adjust as needed */
    margin-bottom: 2rem;
    /* filter: brightness(0) invert(1); */
    /* Makes icons white if they are dark */
}

.cta-section .cta-item h5 {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
}

.custom-btn-light-cta {
    font-weight: 700;
    padding: 12px 35px;
    color: #e9513a;
    background-color: white;
    border-radius: 5center0px;
    transition: all 0.3s ease;
}

.custom-btn-light-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}
.cta-section .img-fluid {
    max-width: 79%;
    height: auto;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section .testimonial-card {
    /* background-color: #f9f9f9; */
    border: none;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    /* max-width: 700px; */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.testimonials-section .section-title span {
    background: linear-gradient(to right, #ee3f2b, #ee947d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.testimonials-section .testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid #e9513a;
}

.testimonials-section .name {
    font-weight: 700;
    color: #333333;
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 0;
}

.testimonials-section .role {
    font-size: 0.9rem;
    color: #777;
}

.testimonials-section .carousel-indicators [data-bs-target] {
    background-color: #e9513a;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.testimonials-section .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: -3rem;
    margin-left: 15%;
}

/* .testimonials-section .carousel-control-prev-icon,
.testimonials-section .carousel-control-next-icon {
  background-color: black;
  border-radius: 50%;
  padding: 25px;
  width: 2.5rem;
  height: 2.5rem;
}

.testimonials-section .carousel-control-prev-icon:hover,
.testimonials-section .carousel-control-next-icon:hover {
  background-color: rgb(0, 0, 0);
} */

.testimonials-section {
    position: relative;
}
.testimonials-section .custom-carousel-icon {
    background-color: rgb(255, 38, 0);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: background-color 0.3s, opacity 0.3s;
}

.testimonials-section .carousel-control-prev.custom-carousel-icon {
    left: 0.5rem; /* Adjust for spacing */
}

.testimonials-section .carousel-control-next.custom-carousel-icon {
    right: 0.5rem; /* Adjust for spacing */
}

.testimonials-section .custom-carousel-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.testimonials-section .custom-carousel-icon:hover {
    opacity: 1;
    background-color: #f1805e;
}

/*--------------------------------------------------------------
# Latest Offers Section
--------------------------------------------------------------*/

.latest-offers-section {
    margin-bottom: 20px;
}
.latest-offers-section .custom-carousel-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* padding-left: 319px; */
}
.latest-offers-section .card-text {
    font-size: 18px;
    color: black;
}

.offer-card {
    border: 1px solid #eee;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    border-color: #e9513a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.offer-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.offer-card .card-text {
    font-size: 1.1rem;
    color: #050505;
}

.offer-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e9513a;
    margin-bottom: 15px;
}

.offer-card b {
    color: black;
}

.offer-card .btn-dark {
    border: #050505;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
}

.offer-card:hover .btn-dark {
    background-color: #e9513a;
    color: white;
}

.offer-card .btn-dark:hover {
    background-color: #e9513a;
    color: white;
}

.latest-offers-section .custom-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.latest-offers-section .custom-card {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.latest-offers-section .custom-card .card {
    height: 100%;
    width: 100%;
}

.latest-offers-section .carousel-prev {
    left: -10px;
}

.latest-offers-section .carousel-next {
    right: -10px;
}

.latest-offers-section .card-img-top {
    width: auto;
    /* margin: 25px auto 15px; */
    height: 270px;
    object-fit: contain;
}

.latest-offers-section .price {
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-arrow {
    border-radius: 50%;
    background-color: #000;
    border: none;
    color: white;
    width: 4.2rem;
    height: 4.2rem;
    cursor: pointer;
    transform: translateY(-50%);
}

.btn-arrow:hover {
    opacity: 1;
    background-color: #bfbfbf;
}

.latest-offers-section .btn-orange {
    background-color: #f15c34;
    width: 50%;
    font-size: 12px;
    padding: 10px;
}

.latest-offers-section .rupee {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.rupee span {
    color: #b1ada9;
}

/*--------------------------------------------------------------
# page contact us section
--------------------------------------------------------------*/
.contactus-section {
    position: relative;
    min-height: 40vh;
    background: url("../images/contact/contactus-bg.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    padding-top: 200px;
    margin-bottom: 100px;
}

.contactus-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(255, 105, 55, 0.8),
        /* Brighter orange */ rgba(211, 72, 53, 0.8) /* Lighter reddish-pink */
    );
    z-index: 0;
}

.contactus-2 {
    position: relative;
    z-index: 1;
    width: 100%;
    /* padding: 60px 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contactus-contents {
    max-width: 800px;
    margin: 0 auto;
}

.contactus-contents h1 {
    color: white;
}

.contactus-bottom {
    margin-top: auto;
    padding-bottom: 20px;
}

.contact-title {
    font-size: 12rem;
    height: 170px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgb(250, 180, 180);
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    transform: scaleX(1.4);
    letter-spacing: -10px;
}

.name-row {
    display: flex;
    gap: 10px;
}
.name-row input {
    width: 100%;
}

/*--------------------------------------------------------------
# Service Page
--------------------------------------------------------------*/

.latest-service-section .service-intro {
    font-size: 1.7rem;
    color: #696969;
    letter-spacing: 1px;
}

.latest-service-section .card-text {
    font-size: 1.1rem;
}

.latest-service-section .card-title {
    font-size: 1.5rem;
    margin-top: 20px;
}

.latest-service-section .read-more-underline {
    display: inline-block;
    position: relative;
    color: #f15c34;
    padding-left: 16px;
    text-decoration: none; /* remove default underline */
    padding-bottom: 1px; /* gap between text and line */
}

.latest-service-section .read-more-underline::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 0;
    width: 15%;
    height: 1px;
    background-color: currentColor; /* matches text color */
}

.latest-service-section .card-img-top {
    padding: 10px;
}

/*--------------------------------------------------------------
# Product page
--------------------------------------------------------------*/

.latest-product-section .about-content {
    font-size: 17px;
    line-height: 1.9; /* Line spacing inside each paragraph */
}

.latest-product-section .news-card {
    background-color: #f4f4f4;
}

.latest-product-section .btn-explore {
    background-color: #f15c34;
    padding: 8px 0;
    width: 45%;
    border: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.latest-product-section .btn-explore:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    background-color: #e14c28; /* Slightly darker on hover */
}

/* Explore Icon Styling */
.latest-product-section .btn-explore i {
    border: 1px solid #fff;
    color: #fff;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    font-size: 0.5rem;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.latest-product-section .btn-explore:hover i {
    background-color: #fff;
    color: #f15c34;
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/

.contact-section .section-title {
    font-size: 50px;
    color: black;
}

.contact-section .section-hr {
    margin: 5px 0 -21px;
}

.contact-section .page-hr {
    margin: 10px 0;
}

.contact-section .bottom-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    padding: 30px 0 0;
    margin-bottom: -33px;
}

.contact-section .contact-left,
.contact-right {
    flex: 1 1 45%;
    min-width: 280px;
}

.contact-list li {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    list-style: none; /* remove default bullet */
}

.contact-list li::before {
    content: "■"; /* Unicode square character */
    color: #f15c34;
    font-size: 21px;
    position: absolute;
    bottom: 0;
    left: -29px;
}
.contact-details {
    padding: 15px 20px;
}

.contact-details h6 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #f15c34;
}

.contact-details h5 {
    margin: 20px 0 0;
    font-size: 31px;
    font-weight: 500;
    color: #000000;
}

.contact-section .contact-text h5 a {
    color: black;
}

.contact-details .loc-details {
    color: black !important;
    margin: 20px 0 0;
    line-height: 30px;
    letter-spacing: 1px;
}

.call-icon {
    width: 32px;
    height: 32px;
}

.contact-left .contact-img {
    object-fit: cover;
    width: 638px;
    height: 429px;
}
.message-section {
    position: relative;
    min-height: 90vh;
    background: url("../images/contact/contactus-bg.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.message-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(235, 108, 66, 0.8),
        /* Brighter orange */ rgba(160, 57, 43, 0.8) /* Lighter reddish-pink */
    );
    z-index: 0;
}

.message-2 {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.message-contents {
    width: 50%;
}

.message-contents h1 {
    color: white;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form {
    border-radius: 10px;
    padding: 30px;
}

.custom-select,
.custom-input,
.custom-textarea {
    background-color: rgba(10, 10, 10, 0.4);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.custom-select option {
    background-color: #0d1b2a;
    color: white;
}

.contact-form,
.form-section {
    overflow: visible !important;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    color: #ccc;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
    box-shadow: 0 0 0px 1000px rgba(10, 10, 10, 0.4) inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.custom-select:focus,
.custom-input:focus,
.custom-textarea:focus {
    background-color: rgba(10, 10, 10, 0.4);
    border-color: #f15c34;
    box-shadow: 0 0 5px rgba(199, 68, 32, 0.5);
    color: white;
    border: 2px solid rgb(145, 79, 55);
}

.custom-textarea {
    height: 190px;
    resize: vertical;
}

.message-section .custom-btn {
    padding: 20px;
    background-color: black;
    font-size: 18px;
    color: white;
    width: 30%;
    border-radius: 10px;
    border: none;
}

.message-section .custom-btn:hover {
    background-color: rgb(53, 17, 17);
    color: white;
}

.map-section {
    background-color: #f8f9fa;
    margin-bottom: 100px;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: #ffffff;
    /* Darker footer */
    color: #000000;
    /* Lighter text for contrast */
}

.footer h5 {
    color: #f15c34;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer .footer-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer .footer-links li {
    margin-bottom: 10px;
}

.footer .footer-links a,
.footer .footer-contact li {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: #e9513a;
    padding-left: 5px;
}

.footer .footer-contact i {
    color: #e9513a;
}

.footer .social-icons a {
    color: #000000;
    font-size: 1rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.footer .social-icons a i {
    border: 1px solid lightgray;
    padding: 10px 11px;
    border-radius: 50%;
}
.footer .social-icons a i:hover {
    background-color: #e9513a;
    color: white;
}

.footer .footer-hr {
    border-color: #465d75;
    /* Slightly lighter hr */
    margin-top: 30px;
}

.footer .copyright-text {
    font-size: 0.85rem;
    color: #000000;
}

.footer .copyright-text a {
    color: #e9513a;
    font-weight: 500;
}

.footer .copyright-text a:hover {
    color: #e9513a;
}
.footer .col-lg-4 {
    margin-top: 4px;
}

/*--------------------------------------------------------------
# LANDING PAGE
--------------------------------------------------------------*/
/* .landing-section h1 {
    font-size: 3rem !important;
} */

.landing-section .landing-hero-section {
    width: 45%;
    padding: 49px 0 0 33px;
}

.landing-section .landing-hero-content {
    font-size: 1.1rem;
    font-weight: 300;
    width: 76%;
}


/* Hero Section */

.landing-contactus-section {
    min-height: 70vh;
    padding-top: 0;
    margin: 0;
}

.landing-contactus-section h1 {
    font-size: 45px;
}

.landing-contactus-section .lead {
    font-size: 17px;
}

.landing-contactus-section {
    position: relative;
    background-color: #0d1b2a;
    padding: 0;
}


.landing-contactus-section .logo-top-row {
    background: transparent;
    padding: 20px 60px;
    position: relative;
    z-index: 10;
}
.landing-contactus-section .brand-logo {
    max-width: 186px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.8s ease, filter 0.3s ease;
    /*filter:*/
    /*    drop-shadow(0 0 20px rgba(255, 255, 255, 1))*/
    /*    drop-shadow(0 0 40px rgba(255, 255, 255, 0.9))*/
    /*    drop-shadow(0 0 60px rgba(255, 255, 255, 0.8))*/
    /*    drop-shadow(0 0 80px rgba(255, 255, 255, 0.7))*/
    /*    drop-shadow(0 0 120px rgba(255, 255, 255, 0.5));*/
}
.landing-contactus-section .brand-logo2 {

        max-width: 180px;
        height: auto;
        transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
        filter: drop-shadow(0 0 8px rgba(180, 179, 179, 0.8));

}

.landing-contactus-section .brand-logo:hover{
    transform: scale(1.05);
    filter:
        drop-shadow(0 0 25px rgba(255, 255, 255, 1))
        drop-shadow(0 0 50px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 75px rgba(255, 255, 255, 0.6))
        drop-shadow(0 0 100px rgba(255, 255, 255, 0.4))
        drop-shadow(0 0 150px rgba(255, 255, 255, 0.3))
        drop-shadow(0 0 2000px rgba(255, 255, 255, 1));

}

.landing-contactus-section .brand-logo2:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 80px rgba(255, 255, 255, 1));
    opacity: 1;
}
/*
.landing-contactus-section .logo-top-row {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  background: transparent;
}

.landing-contactus-section .brand-logo {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.landing-contactus-section .brand-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 1));
}


.landing-contactus-section .brand-logo2 {
  max-width: 120px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  transition: transform 0.3s ease;
}
.landing-contactus-section .brand-logo2:hover {
  transform: scale(1.08);
} */

.landing-contactus-section .contactus-2 {
    padding: 112px 20px 306px;
}

.landing-contactus-section .contactus-contents {
    max-width: 900px;
    margin: 0 auto;
}

.landing-section .img-fluid {
    max-width: 112%;
}

/* .landing-section .hero-contents {
    align-items: center;
    justify-content: center;
    gap: 0px;
} */

/* logo section */

.landing-work-section h5 {
    font-size: 1rem;
}

.landing-news-section .btn-arrow {
    display: none;
}

.landing-news-section .news-card {
    border: none;
}

.landing-news-section .news-card .card-img-top {
    width: 100% !important;
    height: 86px;
    object-fit: cover;
    text-align: center;
    margin-left: 37px;
}

.landing-news-section .landing-news-padding {
    padding: 50px 180px 0 !important;
}

.latest-news-section .section-title {
    font-size: 2.8rem;
}



#newsprinter .news-card .card-img-top{
    width: 89% !important;
    height: 209px;
}

#itnews .news-card .card-img-top{
    width: 64% !important;
    height: 154px;
}


/* DIGITAL MARKETING LANDING PAGE */

.landing-digital-contactus-section{
    position: relative;
    /* height: 68vh; */
    padding: 96px;
    margin: 0;
    background: url("../images/landing/dg-banner.png") center/cover no-repeat;
}

/* .landing-digital-contactus-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(255, 105, 55, 0.8),
        rgba(211, 72, 53, 0.8)
    );
    z-index: 0;
} */


.landing-contactus-section {
    position: relative;
    background-color: #0d1b2a;
    padding: 0;
}

.landing-digital-contactus-section .contactus-2 {
    padding: 340px 20px 306px;
}

.landing-digital-contactus-section .contactus-contents {
    max-width: 900px;
    margin-top: 43px;
}


.landing-digital-hero-section{
  min-height: 90vh;
  padding: 0;
}

.landing-digital-contactus-section h1{
    font-size: 3.4rem;
}

.women-digital-landing-img{
    height: 100%;
}

.landing-digital-bottom-section{

    min-height: 40vh;
}




.landing-digital-bottom-section .digital-bottom-button{
    background-color: #5e1d03;
    padding: 8px 0;
    width: 17%;
    border: none;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.landing-digital-bottom-section .digital-bottom-button:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    background-color: #e14c28;
}

#digital-landing {
    padding: 2px 180px 39px !important;
}

.dig-landing{
    padding: 30px 180px 99px 180px;
}


#digital-client-logos .news-card .card-img-top{
    width: 118% !important;
    height: 79px !important;
    margin-left: 0;
    object-fit: cover;
    text-align: center;
}


/* -------------------------------------------- */
/* DM New Landing Page */

/* -------------------------------------------- */

#dm-section1{
    padding: 0 0 74px 0;
     background: url("../images/digital-landing/Dm-hero.jpg") center/cover no-repeat;
}

#dm-section1 .logo-top-row{
    margin-top: 85px;
}

#dm-section1 h1{
    font-size: 3rem !important;
}

.dm-section{
     min-height: 100vh;
}
.btn-send-message {
  background-color: #e8501f;
  border: none;
  color: #fff;
  transition: 0.3s ease;
}

.btn-send-message:hover {
  background-color: #d53e0c;
  color: white;
  transform: translateY(-3px);
}


.dm2 {
  background: url("../images/hero/digital-hero.png") no-repeat center top ;
  background-size: cover;
  width: 100%;
  overflow: hidden;
  padding: 0 20px 0 0;
  animation: moveBg 5s ease-in-out infinite alternate;
}

@keyframes moveBg {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}

/* .logo-item2 {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.shine-logo {
  display: block;
  width: auto;
  height: auto;
  position: relative;
}

.logo-item2::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: logo-shine 3s infinite;
}

@keyframes logo-shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
} */

#dm-section2{
    padding: 70px 68px 61px 55px;
}

#dm-section2 h2{
    font-size: 38px;
}

#dm-section2 h5:hover{
    color: #d74a1f;
}

#dm-section2 .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#dm-section2 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animate icon upward */
#dm-section2 .service-card .icon-box i {
  transition: transform 0.4s ease;
}

#dm-section2 .service-card:hover .icon-box i {
  transform: translateY(-10px);
}

#dm-section3 {
    position: relative;
    min-height: 27vh;
background: linear-gradient(
        to bottom right,
        rgba(255, 105, 55, 0.8),
        /* Brighter orange */ rgba(211, 72, 53, 0.8) /* Lighter reddish-pink */
    );    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

#dm-section3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(255, 105, 55, 0.8),
        /* Brighter orange */ rgba(211, 72, 53, 0.8) /* Lighter reddish-pink */
    );
    z-index: 0;
}

#dm-section3 .contactus-contents h1 {
    color: white;
    font-size: 26px;
}
#dm-section3 .btn-light{
    background-color: transparent;
    color: white;
    padding: 10px 20px 10px 20px;
    border: 2px solid rgba(235, 145, 115, 0.8);
    border-radius: 40px;
}
#dm-section3 .btn-light a{
    color: white;
}

#dm-section3 .btn-light:hover{
    border: 2px solid white;
}



.our-works-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  width: 100%;
}

.our-works-section h2{
    font-size: 38px;
    font-weight: bold;
    text-transform: uppercase;
}

.works-container {
  width: 95%;
  margin: 0 auto;
}

.works-grid {
  display: grid;
  margin-top:36px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 36px;
}

.work-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  height: 100%;
}

.work-card img {
  width: 100%;
  height: 443px;
  object-fit: unset;
  display: block;
  transition: transform 0.9s ease-in-out; /* smooth animation */
}

.work-card img:hover {
  transform: scale(1.03); /* zoom in effect */
}


.work-content {
  padding: 20px;
}

.work-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #d74a1f;
  margin-bottom: 10px;
}

.work-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}



#dm-section5{
    padding: 40px 20px 90px 20px;
}

/* Section Wrapper */
#dm-dection-6.stats-section {
  background: linear-gradient(90deg, rgb(202, 105, 81), rgb(233, 94, 39));
  padding: 40px 0;
  color: #fff;
}

/* FIXED SELECTORS BELOW */
#dm-dection-6 .stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
  text-align: center;
}

#dm-dection-6 .stat-box {
  flex: 1;
  min-width: 200px;
  margin: 20px 0;
}

#dm-dection-6 .stat-box h2 {
  font-size: 2.3rem;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

#dm-dection-6 .stat-box p {
  color: #fff;
  margin-top: 8px;
  font-size: 0.95rem;
}

#dm-dection-6 .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#dm-dection-6 .rating img .google {
  width: 28px;
  height: 28px;
}

#dm-dection-6 .rating .stars img {
  width: 25px;
  height: 25px;
}

#dm-dection-6 .rating-score {
  font-size: 1.6rem;
  font-weight: 600;
}

#dm-dection-6 .stars {
  color: #fbc02d;
  font-size: 1.3rem;
  position: relative;
}

#dm-dection-6 .half-star {
  color: #555;
  position: absolute;
  left: 75%;
  overflow: hidden;
  width: 50%;
}

#whatsapp-button-widget .widget-button .wp i {
    font-size: 38px !important;
}

#whatsapp-button-widget .widget-button a, #whatsapp-button-widget .widget-button i {
    color: #fff;
    width: 59px !important;
    height: 59px !important; }


/* -------------------------------------------- */

.custom-alert {
    background: linear-gradient(90deg, rgb(202, 105, 81), rgb(233, 94, 39));
    color: white;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* printer */

#landing-printer-contactus-section .logo-top-row{
    margin-top: 85px;
}

.digital-marketing{
        padding: 100px 180px 52px;
}

#landing-printer-contactus-section{
    padding: 0 0 74px 0;
     background: url("../images/service/printer-service2.jpg") center/cover no-repeat;
}

.contact-form-card{
    margin-top: -89px;
}

#landing-printer-contactus-section h1{
    font-size: 3rem !important;
}


.custom-alert .btn-close {
    filter: invert(1);
    /* makes close button white */
}

.custom-alert .btn-close:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# POPUP FORM
--------------------------------------------------------------*/

/* Optional Custom Popup Enhancements */
#popupForm .modal-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  #popupForm .form-control {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

#popupForm .btn-close{
    color: #c74b2e;
}

#popupForm .btn-send-message{
    background-color: #c74b2e;
    color: white;
    width: 40%;
    font-size: 16px;
    align-items: center;
}

#popupForm .btn-send-message:hover{
    border-color: #c74b2e;
    color: #c74b2e;
    background-color: white;
}
/*--------------------------------------------------------------
# Responsive Adjustments (Example - Bootstrap handles most)
--------------------------------------------------------------*/
@media (max-width: 991.98px) {

    .banner-it {
    min-height: 70vh;
    background-position: center top;
  }

  .banner-it .logo-top-row {
    height: auto;
    padding: 10px 20px;
    justify-content: center;
  }

  .banner-it .brand-logo2 {
    max-width: 150px;
  }

  .banner-it .contactus-2 h1 {
    font-size: 1.8rem;
  }

  .banner-it .contactus-2 p {
    font-size: 1rem;
    padding: 0 15px;
  }

    .section-title {
        font-size: 2rem;
    }

    .cta-section .cta-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        text-align: start;
    }
    .custom-carousel-track {
        grid-template-columns: repeat(3, 1fr);
    }
    .landing-news-section .landing-news-padding {
        padding: 0 60px 11px !important;
    }
}

@media (max-width: 1000px) {
    .icon1 {
        visibility: hidden;
    }
    .icon2 {
        visibility: hidden;
    }
    .landing-news-padding {
        padding: 0 60px 11px !important;
    }
}

/* Tablet & Small Desktops: 768px - 1024px */
@media (max-width: 1024px) {
    .navbar .nav-link {
        font-size: 13px;
    }

    .landing-digital-contactus-section h1
 {
    font-size: 2.4rem;
}

    .hero-2 {
        background-position: start;
        padding: -200px 20px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 4.5rem;
    }

    .hero-section .lead {
        font-size: 1.3rem;
    }

    .hero-section .hero-contents {
        flex-direction: column;
    }

    .hero-section .hero-lsection1 {
        padding-left: 0px;
    }
    .hero-input,
    .hero-input-btn {
        max-width: 50%;
        height: 42px;
        font-size: 0.9rem;
    }

    .hero-section .d-flex {
        align-items: center !important;
    }

    .hero-section img {
        max-width: 90%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .expectations-section {
        padding: 10px;
    }
    .news-padding {
        padding: 0 30px;
    }

    .landing-news-section .landing-news-padding {
        padding: 0 60px 11px !important;
    }

    /* .expectsection-padding {
        padding: 80px 40px 23px;
    } */

    .expectsection-padding {
        padding: 80px 67px 23px 62px;
    }

    .offer-padding {
        padding: 80px 40px 23px; /* reduced side padding */
    }

    .expectations-section .bottom-about {
        text-align: center;
    }

    .expectations-section .btn-dark {
        padding: 4px 12px 5px 11px;
    }
    .expectations-section .about-bottomimg {
        max-width: 100%;
        margin-bottom: 20px;
        object-fit: cover;
    }

    .expectations-section .stats .stat-item {
        padding: 0px 67px;
    }
    .expectations-section .about-content {
        font-size: 13px;
        line-height: 18px;
        text-align: justify;
    }

    .testimonials-section .custom-carousel-icon {
        visibility: hidden;
    }

    .latest-news-section .custom-card {
        width: calc(100% / 3);
    }

    .how-we-work-section .service-content {
        flex-direction: column !important; /* keep image and content in row */
        flex-wrap: wrap;
        text-align: left;
    }

    .how-we-work-section .col-lg-5,
    .how-we-work-section .col-lg-7 {
        width: 100%;
        max-width: 91%;
        padding: 0 13px 33px;
    }

    .how-we-workpadding img {
        display: none;
    }

    .how-we-work-section .process-item {
        flex-direction: column;
        align-items: center;
    }

    .how-we-work-section .flex-grow-1 {
        text-align: left;
        margin-left: 1rem !important;
    }

    .how-we-work-section .process-item .icon-bg {
        margin: 0;
    }
    .contact-title {
        font-size: 9.4rem;
        height: 142px; /* Low height for a slim line */
        font-weight: 700;
        color: transparent;
        -webkit-text-stroke: 0.7px rgb(250, 180, 180);
        text-transform: uppercase;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        transform: scaleX(1.1);
    }

    .latest-offers-section .btn-orange {
        font-size: 10px;
    }

    /* product page */

    .latest-product-section .btn-explore {
        width: 68%;
        font-size: 11px;
        padding: 4px 0;
    }

    .latest-product-section .btn-explore .explore-icon {
        width: 16px;
        height: 16px;
        padding-top: 6px;
        padding-left: 4px;
        font-size: 5px;
    }

    .latest-product-section .about-content {
        font-size: 15px;
        line-height: 26px;
    }

    .latest-product-section .product-img {
        max-width: 100%;
        height: auto;
    }

    /* contact page */

    .contact-section .contact-list li {
        font-size: 21px;
    }

    .contact-section .bottom-contact {
        padding-bottom: 60px;
    }
    .contact-section .contact-text h6 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .contact-section .contact-text h5 {
        font-size: 22px;
    }

    .message-section {
        min-height: auto;
        padding: 80px 20px;
        background-position: center top;
        background-size: cover;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
    }

    .contact-left .contact-img {
        width: 411px;
    }

    .message-section .message-contents h1 {
        font-size: 2rem;
    }

    .message-section .contact-form {
        width: 100%;
        max-width: 500px;
    }

    .dig-landing{
        padding: 20px 67px 0 62px;
    }

    .digital-offers{
        padding: 64px 5% 45px;
    }

    .digital-offers .offer-card {
    padding: 23px 12px 13px 10px
    }
}
/* Mobile Devices: 353px - 767px */
@media (max-width: 767.98px) {
    .expectsection-padding {
        padding: 60px 20px 25px;
    }
    .floating-widget {
        display: none;
    }

    .nav-padding {
        padding: 6px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .offer-padding {
        padding: 0 10px 19px;
    }
    .news-padding {
        padding: 52px 22px 0;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: start;
    }

    .section-subtitle {
        font-size: 10px;
        text-align: start;
    }
    .section-padding-lg {
        padding: 80px 0;
    }

    .section-content {
        text-align: start;
    }

    .page-hr {
        margin: 27px 0 0;
    }

    .navbar .custom-search {
        display: none;
    }

    .navbar-nav {
        gap: 3px;
    }

    .nav-link.btn-light {
        width: 110%;
        padding: 8px;
        font-size: 11px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 12px;
    }

    .whatsapp a img {
        width: 46px;
        height: 43px;
    }
    .widget-button .wp i {
        font-size: 19px;
    }
    .widget-button.close-btn .widget {
        width: 42px;
        height: 43px;
        font-size: 19px;
        margin-left: -5px;
    }

    .widget-button a,
    .widget-button i {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    /* .navbar .dropdown-toggle {
    display: none;
  } */

    .hero-section {
        padding-bottom: 45px;
    }

    .contact-form-card {
        display: none;
    }

    .hero-section h1 {
        font-size: 2.3rem !important;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-section .hero-2 {
        visibility: visible;
    }
    .hero-section .lead {
        display: none;
    }

    .hero-section #button {
        font-size: 12px;
        padding: 6px 12px;
        width: auto;
    }

    .hero-section .hero-img {
        margin-top: -40px;
        width: 90vw;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .hero-section .hero-lsection1 {
        width: 71%;
        padding: 0;
    }

    .hero-section .hero-lsection1 .btn-light {
        width: 44%;
        font-size: 12px;
        padding: 10px 5px 9px 5px;
    }

    .hero-section .custom-search {
        max-width: 200px;
    }
    .hero-input,
    .hero-input-btn {
        max-width: 200px;
        height: 38px;
        font-size: 0.8rem;
        align-items: center;
        text-align: center;
    }

    .hero-section .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px;
    }

    /* product page hero */

    .hero-pagesection {
        padding: 60px 10px 50px;
    }

    .hero-pagesection h1 {
        font-size: 2rem;
    }

    .hero-pagepara {
        font-size: 0.6rem;
        flex-wrap: wrap;
    }

    .expectations-section .stats {
        margin-top: -40px;
    }
    .expectations-section .stats h3 {
        font-size: 2.5rem;
    }

    .expectations-section .stats p {
        font-size: 0.7rem;
    }

    .expectations-section .image-content {
        gap: 0;
    }

    .expectations-section .about-content {
        font-size: 13px;
    }

    .expectations-section .btn-content {
        font-size: 10px;
    }

    .expectations-section .stats .stat-item {
        padding: 0;
    }

    .cta-section .cta-title {
        font-size: 1.6rem;
    }

    .timeline-wrapper-horizontal::before {
        width: 2px;
        height: 98%;
        left: 50%;
        top: 16px;
        /* bottom: 0; */
        transform: translateX(-50%);
        background-image: repeating-linear-gradient(
            to bottom,
            red,
            red 5px,
            transparent 5px,
            transparent 10px
        );
    }

    .timeline-wrapper-horizontal .row {
        flex-direction: column;
        align-items: center;
    }

    .expectations-section .image-box1,
    .expectations-section .image-box2,
    .expectations-section .image-box3 {
        width: 100%;
        height: 223px;
    }

    .expectations-section .image-box1 {
        width: 92%;
        margin-left: 13px;
    }

    .expectations-section .image-content {
        gap: 0px;
        bottom: 10px;
        left: 10px;
        padding: 10px;
    }

    .expectations-section .image-content h2 {
        font-size: 18px;
    }

    .expectations-section .image-content p {
        font-size: 13px;
    }

    .expectations-section .btn-dark {
        display: none;
    }

    .expectations-section .img-equal {
        height: 300px;
    }

    .expectations-section .about-bottomimg {
        height: auto;
        padding-bottom: 0;
        margin-top: 4px;
        width: 312px;
        align-items: center;
    }

    .expectations-section .bottom-about {
        flex-direction: column;
    }

    .expectations-section .about-box {
        margin-top: 8px;
    }

    .latest-news-section {
        padding: 0;
    }

    .latest-news-section .custom-carousel-icon {
        visibility: hidden;
    }

    .how-we-work-section .service-content {
        flex-direction: column;
    }

    .how-we-work-section .section-title {
        font-size: 1.77rem;
    }

    .how-we-work-section .img-fluid {
        display: none;
    }

    .how-we-work-section .item-heading {
        font-size: 1rem;
    }

    .how-we-work-section .item-description {
        font-size: 0.9rem;
        padding: 0;
    }

    .how-we-work-section .section-description {
        font-size: 0.8rem;
        text-align: center;
    }

    .how-we-work-section .col-lg-7 {
        padding: 0;
    }

    .process-item img {
        max-width: 80px;
    }

    .icon-bg img {
        width: 30px;
    }
    .process-item h5,
    .process-item p {
        text-align: center;
    }

    /* cta section - Home page */

    .ctasection-padding {
        padding: 65px 30px 84px;
    }

    .cta-section .cta-card {
        text-align: center;
        align-items: center;
        margin-bottom: -50px;
    }

    .cta-section .cta-card-contents {
        text-align: center;
    }

    .cta-section .sub-heading-light {
        font-size: 11px;
        margin-top: -10px;
    }

    .cta-section .card-description {
        font-size: 13px;
    }

    .cta-section .cta-title {
        font-size: 1.8rem;
    }

    .cta-section .content-section {
        margin-top: -40px;
    }
    .cta-section .cta-description {
        font-size: 13px;
    }
    .cta-section .cta-item h5 {
        font-size: 1.2rem;
    }

    .cta-card img {
        margin-top: -30px;
        width: 200px;
        height: 200px;
        margin-left: 56px;
    }

    .digital-card2 {
        margin: 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .digital-card-contents {
        margin-top: 30px;
    }
    .digital-marketingimg1 {
        width: 95% !important;
        margin: 0 !important;
    }

    /* social media  */

    .socia-media .product-img {
        margin-top: -29px;
    }
    /* nfc */

    .digital-padding {
        padding: 14px 30px 13px;
    }

    .nfc {
        margin: 36px 0;
    }

    .arrow-list li {
        font-size: 13px;
        line-height: 21px;
        text-align: justify;
    }
    /* testimonial section - Home page */

    .testimonials-section .custom-carousel-icon {
        visibility: hidden;
    }

    /* latest offer section - Home page */

    .latest-offers-section .product-col {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 8px;
        padding-right: 8px;
    }

    .latest-offers-section .card-img-top-product {
        height: 131px;
        padding: 4px;
    }

    .latest-offers-section .btn-orange {
        width: 90px;
        font-size: 9px;
        padding: 6px;
    }

    .latest-offers-section .offer-top {
        margin-top: 96px;
    }

    .latest-offers-section .rupee {
        font-size: 0.6rem;
    }

    .latest-offers-section .product-col .card-title {
        font-size: 0.9rem;
    }

    .latest-offers-section .product-col .card-text {
        font-size: 0.6rem;
    }

    .btn-arrow {
        display: none;
    }

    .latest-service-section .service-intro {
        font-size: 1rem;
    }

    /* contact page */

    .contact-section .top-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .contact-section .section-title {
        font-size: 1.7rem;
        line-height: 1.4;
    }

    .contact-section .contact-header-img {
        max-width: 50px;
        margin-bottom: 44px;
    }

    .contact-section .bottom-contact {
        flex-direction: column;
        padding: 0 0 44px;
    }

    .contact-section .contact-left,
    .contact-section .contact-right {
        width: 100%;
        flex: 1 1 100%;
    }

    .contact-left .contact-img {
        display: none;
    }

    .contact-section .items {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-section .call-icon {
        width: 30px;
        height: auto;
    }

    .contact-list li {
        font-size: 0.3rem;
    }
    .contact-list li::before {
        margin-bottom: 1px;
    }

    .contact-section .contact-text h6 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .contact-section .contact-text h5 {
        font-size: 16px;
    }

    .contact-section .loc-details {
        font-size: 14px;
    }

    .message-contents {
        width: 100%;
    }

    .message-section .message-contents h1 {
        font-size: 1.3rem;
    }
    .message-section .custom-input,
    .message-section .custom-textarea {
        padding: 12px;
        font-size: 14px;
    }

    .message-section .custom-btn {
        width: 35%;
        font-size: 12px;
        padding: 6px;
    }

    /* footer */

    .footer .social-icons {
        text-align: center;
    }

    .footer .copyright-text {
        font-size: 11px;
        text-align: center;
    }

    /* product page contact */

    .contactus-section {
        padding-top: 120px;
    }

    .contactus-contents h1 {
        font-size: 1.3rem;
        padding: 0 20px;
    }

    .btn {
        font-size: 0.8rem;
        padding: 3px 7px;
    }
    .contact-title {
        font-size: 3.4rem; /* Adjust size to fit within viewport */
        height: 51px; /* Low height for a slim line */
        font-weight: 700;
        margin-top: 39px;
        color: transparent;
        -webkit-text-stroke: 0.7px rgb(250, 180, 180);
        text-transform: uppercase;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        margin-right: -10px;
        margin-left: -11px;
        letter-spacing: -3px;
    }
    .contactus-2 {
        padding: 0 10px;
    }

    /* product page  */

    .latest-product-section .btn-explore {
        font-size: 0.8rem;
        padding: 8px 12px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: 162px;
    }

    .latest-product-section .btn-explore i {
        border: 1.5px solid #fff; /* change to theme color if needed */
        border-radius: 50%;
        padding: 6px;
        width: 20px;
        height: 20px;
        font-size: 0.5rem;
        text-align: center;
        line-height: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .latest-product-section .news-card .card-body {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .latest-product-section .about-content {
        font-size: 13px;
        line-height: 21px;
        text-align: justify;
    }

    .latest-product-section .product-img {
        width: 100%;
        height: auto;
        margin-bottom: 35px;
    }

    .latest-product-section .bottom-about {
        text-align: center;
        flex-direction: column;
    }

    .footer .news-padding {
        padding: 81px 22px 0;
    }
    .footer {
        margin-top: -60px;
    }

    /* landing page */

    .landing-news-section .landing-news-padding {
        padding: 40px 41px 20px !important;
    }

    .landing-news-section .news-card .card-img-top{
        padding: 0 0 45px 0;

    }

    .landing-contactus-section , .landing-digital-contactus-section {
        padding-top: 0;
    }

    .landing-contactus-section, .landing-digital-contactus-section .contactus-contents h1{
        font-size: 1.9rem;
    }

    .landing-contactus-section,.landing-digital-contactus-section .lead {
        font-size: 13px;
    }

    .landing-contactus-section .logo-top-row {
        padding: 15px 20px;
        text-align: center;
    }
    .landing-contactus-section .brand-logo,
    .landing-contactus-section .brand-logo2 {
        max-width: 120px;
        margin: 0 auto;
        display: block;
    }
    .landing-contactus-section .contactus-2 {
        padding: 62px 15px 104px;
    }
    .landing-digital-contactus-section .contactus-2{
    padding: 161px 15px 138px;
    }

    .landing-contactus-section,.landing-digital-contactus-section .contactus-contents {
        padding: 0 15px;
        max-width: 100%;
    }

    .dig-landing{
        padding: 29px 20px 0 72px;
    }

    .landing-digital-contactus-section h1{
        font-size: 3.4rem;
    }

    #landing-printer-contactus-section h1{
        font-size: 2rem !important;
    }

    .banner-it {
    min-height: 80vh;
  }

  .banner-it .contactus-2 {
    padding: 40px 15px;
  }

  .banner-it .contactus-2 h1 {
    font-size: 1.5rem;
  }

  .banner-it .contactus-2 p {
    font-size: 0.95rem;
  }

  .banner-it .btn-light {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
  

   .works-grid {
    grid-template-columns: repeat(2, 1fr); /* exactly two cards */
    gap: 14px;
  }

  .work-card img {
    height: 250px;
  }

  .our-works-section h2 {
    font-size: 24px;
  }

  .work-content {
    padding: 10px;
  }

  .work-title {
    font-size: 0.95rem;
  }

  .work-description {
    font-size: 0.85rem;
  }

  #dm-section3 {
    min-height: 33vh;
  }

  #dm-section2 {
    padding: 31px 24px 61px 19px;
}

#dm-dection-6 .stats-container{
    display: flex;
    flex-direction: column;
    padding: 0 0 50px 0;
}

}

@media (min-width: 353px) and (max-width: 375px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section #button {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 992px) {
    .custom-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .custom-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 991px) {
    .latest-news-section .custom-card {
        width: 50%; /* 2 cards visible */
        padding: 0 0.75rem;
    }
}

@media (max-width: 576px) {
    .latest-news-section .custom-card {
        width: 100%; /* 1 card visible */
        padding: 0 1.5rem;
    }

    .latest-offers-section .custom-carousel-container {
        margin-top: -28px;
    }
}

/* about-cards */
@media (min-width: 1200px) {
    .expectations-section .col-xl-1-5 {
        width: 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* tab */

@media (min-width: 1025px) and (max-width: 1300px) {

    #dm-dection-6 .stats-container{
    padding: 0 0 50px 0;
}

     .banner-it {
    min-height: 70vh;
    background-position: center top;
  }

  .banner-it .logo-top-row {
    height: auto;
    padding: 10px 20px;
    justify-content: center;
  }

  .banner-it .brand-logo2 {
    max-width: 150px;
  }

  .banner-it .contactus-2 h1 {
    font-size: 1.8rem;
  }

  .banner-it .contactus-2 p {
    font-size: 1rem;
    padding: 0 15px;
  }
    .contactus-section .contact-title {
        width: 100%;
        letter-spacing: 0px;
        font-size: 8.3rem;
        height: 118px;
    }

    .digital-marketing{
      padding: 100px 92px 72px 86px !important;
    }

     .digital-offers{
        padding: 64px 5% 45px;
    }

      .digital-offers .offer-card {
    padding: 23px 12px 13px 10px
}

    .landing-digital-contactus-section h1 {
    font-size: 2.8rem;
}

    #landing-printer-contactus-section h1{
        font-size: 2.6rem !important;
    }

    .latest-news-section {
        padding: 0 0 2rem 0;
    }
    .btn-order-now {
        display: inline-block; /* or flex, depending on layout */
    }

    .footer {
        margin-top: -70px;
    }

    .nav-padding {
        padding: 10px 134px 0 116px;
    }

    .navbar-nav {
        gap: 15px;
    }

    .digital-padding {
        padding: 32px 113px 82px;
    }

    .sticky-image {
        position: -webkit-sticky;
        max-height: 450px;
        margin-top: 10px;
    }

    .nfc {
        margin-top: 72px;
    }
    /*--------------------------------------------------------------
# Homr Page
--------------------------------------------------------------*/

    /* hero section  */

    #testimonials .expectations-section {
        padding: 100px 148px;
    }

    .hero-section {
        padding: 0;
        min-height: 87vh;
    }

    .hero-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .hero-contents img {
        max-width: 100%;
        height: auto;
        max-height: 400px;
        flex: 1;
    }

    .hero-section h1 {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .hero-section p.lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-section .hero-contents {
        margin: 0;
        gap: 23px;
    }

    .hero-section .custom-search {
        width: 100%;
    }

    .hero-section .custom-search input {
        width: 100%;
        font-size: 1rem;
    }

    .hero-section .hero-lsection1 {
        padding: 89px 0 45px 7px;
        width: 37%;
    }

    .hero-section .hero-input-btn {
        width: 100%;
        font-size: 1rem;
    }

    .hero-section .hero-lsection1 .btn-light {
        padding: 8px 17px;
        font-size: 14px;
        width: 29%;
    }
    .hero-section .d-flex.flex-column.gap-3.align-items-start {
        width: 70%;
        max-width: 500px;
        margin-top: -24px;
    }

    .expectations-section .section-title {
        font-size: 1.77rem;
    }

    .expectations-section .home-about-content {
        font-size: 0.8rem;
    }

    .expectations-section .stats h3 {
        font-size: 2.5rem;
    }
    /* .expectsection-padding {
        padding: 100px 112px;
    } */

    .expectsection-padding {
        padding: 100px 92px 0 86px;
    }

    .dig-landing{
        padding: 20px 110px 0 116px;
    }

    .expectations-section .image-content {
        gap: 0;
    }

    .expectations-section .image-box1 {
        height: 641px;
    }
    .expectations-section .image-box2,
    .image-box3 {
        height: 286px;
    }

    .offer-padding {
        padding: 44px 107px 0;
    }

    .how-we-work-section .section-title {
        font-size: 2.4rem;
    }
    .how-we-work-section .section-description {
        font-size: 1rem;
    }

    .how-we-workpadding img {
        padding-top: 4px;
        max-height: 664px;
    }

    .how-we-work-section .process-item .icon-bg {
        width: 45px;
        height: 45px;
        align-items: center;
    }
    .how-we-work-section .process-item .icon-bg img {
        width: 25px;
    }

    .how-we-work-section .col-lg-7 {
        flex: 0 0 auto;
        width: 60.333333%;
        margin-top: 23px;
    }

    .ctasection-padding {
        padding: 60px 8px;
    }
    .cta-item img {
        display: block;
        margin: 0 auto;
    }

    .how-we-work-section .img-fluid {
        max-width: 104% !important;
        height: 660px !important;
        object-fit: cover;
    }

    .cta-section .card-description {
        font-size: 0.9rem;
    }

    .latest-news-section {
        padding: 0;
    }

    .latest-news-section .custom-card {
        padding: 0;
    }

    .news-padding {
        padding: 90px 112px 0;
    }

    .latest-offers-section .btn-orange {
        width: 55%;
        padding: 7px 1px;
        font-size: 0.68rem;
    }

    .latest-service-section .service-intro {
        font-size: 1.3rem;
    }

    .testimonials-section .testimonial-card {
        padding: 10px;
    }

    .testimonials-section .fst-italic {
        font-size: 14px;
    }

    .testimonials-section .name {
        font-size: 0.9rem;
    }

    .testimonials-section .role {
        font-size: 0.8rem;
    }
    /*
  --------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

    .timeline-wrapper-horizontal::before {
        display: none;
    }
    .expectations-section .bottom-about {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 0;
    }

    .expectations-section .bottom-about .col-lg-7,
    .bottom-about .col-lg-5 {
        flex: 1;
        max-width: 50%;
    }

    .expectations-section .bottom-about .about-content {
        font-size: 13px;
        line-height: 1.5;
        text-align: justify;
        margin-bottom: 16px;
    }

    .expectations-section .about-bottomimg {
        max-width: 100%;
        height: 500px;
        object-fit: cover;
    }

    /*--------------------------------------------------------------
# Product Page
--------------------------------------------------------------*/

    .latest-product-section .bottom-about {
        padding: 0;
        gap: 2rem; /* spacing between columns */
    }

    .latest-product-section .bottom-about .col-lg-6 {
        width: 48%;
        max-width: 48%;
    }

    .latest-product-section .bottom-about .product-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .latest-product-section .bottom-about .about-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .latest-product-section .section-title {
        margin-bottom: 10px;
    }
    .latest-product-section .btn-explore {
        font-size: 0.75rem;
        padding: 6px 11px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        width: 70%;
    }

    .latest-product-section .btn-explore i {
        font-size: 0.5rem;
        border: 1.5px solid #fff;
        border-radius: 50%;
        padding: 6px;
        width: 17px;
        height: 17px;
        text-align: center;
        line-height: 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .latest-product-section .card .btn-explore {
        margin-top: auto;
    }

    .latest-product-section .news-card .card-body {
        padding: 1rem;
    }

    /*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/

    .contact-section .contact-left {
        margin-bottom: 65px;
    }

    .contact-left .contact-img {
        width: 400px;
    }

    .message-contents {
        margin: 100px 0 39px;
    }

    .footer .copyright-text {
        font-size: 0.68rem;
    }

    /* landing page */

    .landing-news-section .news-card .card-img-top {
        margin-left: 0;
        width: 90% !important;
    }

    #newsprinter .news-card .card-img-top{
    margin-left: 0 !important;
    width: 76% !important;
}

    .latest-news-section {
        padding: 0 0 2rem 0;
    }
}

@media (min-width: 1300px) {
    .contactus-section .contact-title {
        width: 100%;
        letter-spacing: 0px;
        font-size: 9.2rem;
        height: 133px;
    }

    .dig-landing {
        padding: 30px 169px 0 189px;
    }

    /*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/

    .how-we-work-section .section-title {
        font-size: 2.5rem;
    }
    .how-we-work-section .process-item .icon-bg {
        width: 45px;
        height: 45px;
        align-items: center;
    }
    .how-we-work-section .process-item .icon-bg img {
        width: 25px;
    }

    .expectations-section .section-title {
        font-size: 1.77rem;
    }

    .expectations-section .home-about-content {
        font-size: 0.8rem;
    }

    .expectations-section .stats h3 {
        font-size: 2.5rem;
    }

    /*--------------------------------------------------------------
# Product Page
--------------------------------------------------------------*/

    .latest-product-section .bottom-about {
        padding: 0;
        gap: 2rem; /* spacing between columns */
    }

    .latest-product-section .bottom-about .col-lg-6 {
        width: 48%;
        max-width: 48%;
    }

    .latest-product-section .bottom-about .product-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .latest-product-section .bottom-about .about-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .latest-product-section .section-title {
        margin-bottom: 10px;
    }

    .latest-product-section .btn-explore {
        font-size: 0.75rem;
        padding: 4px 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        width: 63%;
    }

    .message-contents {
        margin: 100px 0 39px;
    }

    .latest-product-section .btn-explore i {
        font-size: 0.5rem;
        border: 1.5px solid #fff;
        border-radius: 50%;
        padding: 6px;
        width: 19px;
        height: 19px;
        text-align: center;
        line-height: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .latest-product-section .card .btn-explore {
        margin-top: auto;
    }

    .latest-product-section .news-card .card-body {
        padding: 1rem;
    }

    /*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/

    .expectations-section .image-content {
        gap: 0;
    }
}

@media (min-width: 1300px) and (max-width: 1499px) {

       .banner-it {
    min-height: 70vh;
    background-position: center top;
  }

  .banner-it .logo-top-row {
    height: auto;
    padding: 10px 20px;
    justify-content: center;
  }

  .banner-it .brand-logo2 {
    max-width: 150px;
  }

  .banner-it .contactus-2 h1 {
    font-size: 1.8rem;
  }

  .banner-it .contactus-2 p {
    font-size: 1rem;
    padding: 0 15px;
  }
    .hero-section h1 {
        font-size: 2.6rem;
    }

    .hero-section .hero-contents {
        margin-top: 69px;
    }

    .hero-section .hero-lsection1 .btn-light {
        width: 27%;
        padding: 10px 0 10px 0;
    }

    .hero-section .img-fluid {
        max-width: 80%;
    }

    .contact-section .contact-left .contact-img {
        width: 460px;
    }
}

@media (min-width: 1500px) and (max-width: 1650px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section .hero-lsection1 .btn-light {
        width: 26%;
    }

    .contact-left .contact-img {
        width: 544px;
    }
}

@media (min-width: 1651px) {
    .hero-section .hero-lsection1 .btn-light {
        width: 23%;
    }
}

@media (min-width: 767px) and (max-width: 830px) {
    .contact-left .contact-img {
        width: 332px;
    }

    .landing-work-section{
        padding: 44px 0 0 20px;
    }

    .latest-news-section {
        padding: 0;
    }

    .landing-news-section .landing-news-padding {
        padding: 0 60px 11px !important;
    }
    /* .hero-section .hero-contents{
        display: flex;
        align-items: center;
        flex-direction: row;
    } */

    .hero-section .hero-lsection1 {
        padding-left: 0px;
        width: 100%;
        margin-top: -80px;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-section .lead {
        font-size: 0.9rem;
    }
    .hero-section .hero-lsection1 .btn-light {
        width: 18%;
        padding: 7px 6px 8px 6px;
        font-size: 0.8rem;
    }
    .nav-padding {
        padding: 3px 17px;
    }

    .expectations-section .image-content {
        gap: 0;
    }

    .latest-product-section .bottom-about .col-lg-6 {
        flex: 0 0 auto;
        width: 49%;
    }
    .bottom-about {
        gap: 2rem;
    }
    .latest-product-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .latest-product-section .about-content {
        font-size: 0.8rem;
        line-height: 1.7;
        margin-bottom: 1px;
    }

       #dm-dection-6 .stats-container{
    display: flex;
    flex-direction: column;
    padding: 0 0 30px 0;
}
}

@media (min-width: 831px) and (max-width: 930px) {
    .hero-section .hero-contents {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    .hero-section .hero-lsection1 {
        padding-left: 0;
        width: 113%;
        margin-top: -100px;
        text-align: start;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }
    .hero-section .hero-lsection1 .btn-light {
        width: 29%;
        padding: 7px 6px 8px 6px;
        font-size: 0.8rem;
    }

    .hero-2 {
        padding: 0px 70px 0 52px;
    }

    .hero-section .lead {
        font-size: 0.9rem;
    }

    .hero-section .img-fluid {
        max-width: 108%;
    }

    .contact-left .contact-img {
        width: 332px;
    }

    .nav-padding {
        padding: 3px 44px;
    }

    /* .hero-section .hero-lsection1 {
        padding-left: 0px;
        width: 100%;
        margin-top: -80px;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }

    .hero-section .hero-lsection1 .btn-light {
        width: 18%;
    } */
    .expectations-section .image-content {
        gap: 0;
    }

    .latest-product-section .bottom-about .col-lg-6 {
        flex: 0 0 auto;
        width: 49%;
    }

    .bottom-about {
        gap: 1.8rem;
    }
    .latest-product-section .section-title {
        font-size: 1.74rem;
        margin-bottom: 10px;
    }
    .latest-product-section .about-content {
        font-size: 0.82rem;
        margin-bottom: 1px;
    }

    .landing-news-section .landing-news-padding {
        padding: 0 60px 11px !important;
    }
    .landing-work-section{
        padding: 44px 0 0 20px;
    }

    .latest-news-section {
        padding: 0 0 2rem 0;
    }

    #dm-dection-6 .stats-container{
    display: flex;
    flex-direction: column;
    padding: 0 0 30px 0;
}

}

@media (min-width: 931px) and (max-width: 1024px) {
    /* hero section */
    .hero-section .hero-contents {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    .hero-section .hero-lsection1 {
        padding-left: 0;
        width: 100%;
        margin-top: -100px;
        text-align: start;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }
    .hero-section .hero-lsection1 .btn-light {
        width: 24%;
        padding: 7px 6px 8px 6px;
        font-size: 0.8rem;
    }

    .hero-2 {
        padding: 0px 78px 0 85px;
    }

    .hero-section .lead {
        font-size: 0.9rem;
    }

    .hero-section .img-fluid {
        max-width: 108%;
    }

    /*  */
    .expectations-section .image-content {
        gap: 0;
    }

    .nav-padding {
        padding: 10px 85px 0 51px;
    }

    .latest-product-section .bottom-about .col-lg-6 {
        flex: 0 0 auto;
        width: 49%;
    }

    .latest-product-section .product-img {
        max-width: 96%;
        height: auto;
    }

    .latest-product-section .bottom-about .col-lg-6 {
        flex: 0 0 auto;
        width: 49%;
    }

    .bottom-about {
        gap: 0.3rem;
    }
    .latest-product-section .section-title {
        font-size: 1.74rem;
        margin-bottom: 10px;
    }
    .latest-product-section .about-content {
        font-size: 0.9rem;
    }

    .landing-news-section .landing-news-padding {
        padding: 0 60px 11px !important;
    }

    .latest-news-section {
        padding: 0 0 2rem 0;
    }
}

@media (min-width: 1200px) and (max-width: 1299px) {
    .contact-left .contact-img {
        width: 467px;
    }
    .landing-news-section .landing-news-padding {
        padding: 0 60px 11px !important;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-section .hero-lsection1 {
        padding: 89px 0 45px 7px;
        width: 43% !important;
    }
    .nav-padding {
        padding: 10px 85px 0 51px;
    }

    .navbar .nav-link {
        font-size: 1rem;
    }
}


/*IT Landing page*/
.banner-it {
    background: url("../images/it/it-banner.JPG") center/cover no-repeat !important;
        min-height: 60vh;
}

.banner-it .contactus-2{
    padding: 0;
}

.banner-it .logo-top-row{
    height: 100px;
}


/* popup It Promo */

#popup-promo .card-title{
  font-size:1rem !important;
  text-align: center;
}

 #popup-promo .card-body{
    padding: 0;
 }

  #popup-promo .card-text{
    color: red;
    font-size: .96rem;
    font-weight: bold;
  }

  #popup-promo .card-bottom-text{
    color: #002060;
    font-size: .9rem;
    font-weight: bold;
  }

   #popup-promo ul.text-muted li {
  margin-bottom: 8px; 
  line-height: 1.7;   
}

#popup-promo .card-end-text{
font-size: .9rem
}

#popup-promo .card-end-text span{
    background-color: #f4b083;
}
.btn-popup-contact {
  background-color: #a7321d;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-popup-contact a{
    color: white;
}

.btn-popup-contact a:hover{
    color: #a7321d;
}

.btn-popup-contact:hover {
  background-color: white;
  border: 1px solid #a7321d;
}

#popup-promo .btn-popup-contact {
  display: block;
  margin: 0 auto 10px auto; 
  text-align: center;
}