/* Optimized and Responsive styles.css */

/* Base Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scroll behavior and scroll margin */

html {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	scroll-behavior: smooth;
  	margin: 0;
	padding: 0;
	overflow-x: hidden;
	height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.hideThis {
	display: none;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.lright {
	float: left;
}

.fright {
	float: right;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.w-50 {
	width: 50%;
}

.h-50 {
	height: 50%;
}

.w-100vw {
	width: 100vw;
}

.h-100vh {
	height: 100vh;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* Sections */
section {
	height: auto;
	scroll-margin-top: 80px;
}

/* Header */
header {
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: solid 5px #f39c12;
}

/* navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  gap: 10px;
}

.nav-links , .nav-links.active  {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f39c12;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}  
  /* When menu is open, add a class like .open to .hamburger */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Banner Slider */
#banner {
	position: relative;
	padding: 0;
  	scroll-margin-top: 80px;
	scroll-padding-top: 80px; /* height of sticky header */
}

#banner .owl-carousel .item {
  position: relative;
  height: calc(100vh - 80px);
  overflow: hidden;
}

#banner .owl-carousel .item img {
  width: 100%;
  height: 95%;
  object-fit: cover;
}

#banner .owl-carousel .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgb(0 0 0));
  z-index: 1;
  pointer-events: none;
}

#banner .owl-carousel .owl-nav .owl-next button {
	position: absolute;
	right: 2%;
	top: 40%;
	font-size: xxx-large;
	font-weight: bolder;
	color: #f39c12;
	filter: drop-shadow(2px 4px 6px black);
}

#banner .owl-carousel .owl-nav .owl-prev button {
	position: absolute;
	left: 2%;
	top: 40%;
	font-size: xxx-large;
	font-weight: bolder;
	color: #f39c12;
	filter: drop-shadow(2px 4px 6px black);
}
#banner .owl-carousel .owl-dots {
	position: absolute;
	left: 50%;
	bottom: 15%;
	transform: translateX(-50%);
}

.caption {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  padding: 40px 0;
  border-radius: 10px;
  width: 40%;
  height: 30%;
  z-index: 5;
}

.caption h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.caption p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Buttons */

.btn-yellow-pill {
  display: inline-block;
  padding: 0.6em 1.6em;
  background-color: #FFD700; /* bright yellow */
  color: #002147 !important;; /* dark blue text */
  font-weight: 600;
  border: none;
  border-radius: 50px; /* pill shape */
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-yellow-pill:hover {
  background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%); /* orange gradient */
  color: #ffffff !important;;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.btn-yellow {
  display: inline-block;
  padding: 0.6em 1.6em;
  background-color: #FFD700; /* bright yellow */
  color: #002147 !important; /* dark blue text */
  font-weight: 600;
  border: none;
  border-radius: 8px; /* rounded rectangle */
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-yellow:hover {
  background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%); /* orange gradient */
  color: #ffffff !important;
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.btn-blue {
  display: inline-block;
  padding: 0.6em 1.6em;
  background-color: #081e86; /* dark blue */
  color: #ffffff !important; /* white text */
  font-weight: 600;
  border: none;
  border-radius: 8px; /* rounded rectangle */
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #0095ff 0%, #01365b 100%); /* blue gradient */
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.btn-primary {
  background: #f39c12;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #e67e22;
}

/* pdf icon */
.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #003366; /* dark blue or preferred color */
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
  /* background-color: #f4f4f4; */
}

.pdf-link::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('../images/pdf-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Optional hover effect */
.pdf-link:hover {
  background-color: #ffe9cc;
}

/* about us section */

#aboutus h2 {
  text-align: center;
  margin-bottom: 20px;
}

/*
.about-wrapper{
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-text p {
  text-align: justify;
}

.about-img img {
  max-width: 100%;
  width: 300px;
  height: auto;
}

.about-img {
  flex: 0 0 auto;
}
*/



/* Services */

#services {
  --s: 26px; /* control the size*/
  --c1: #ffffff;
  --c2: #f2f2f2;
  
  --_s: calc(2*var(--s)) calc(2*var(--s));
  --_g: 35.36% 35.36% at;
  --_c: #0000 66%,var(--c2) 68% 70%,#0000 72%;
  background:
    radial-gradient(var(--_g) 100% 25%,var(--_c)) var(--s) var(--s)/var(--_s),
    radial-gradient(var(--_g) 0    75%,var(--_c)) var(--s) var(--s)/var(--_s),
    radial-gradient(var(--_g) 100% 25%,var(--_c)) 0 0/var(--_s),
    radial-gradient(var(--_g) 0    75%,var(--_c)) 0 0/var(--_s),
    repeating-conic-gradient(var(--c1) 0 25%,#0000 0 50%) 0 0/var(--_s),
    radial-gradient(var(--_c)) 0 calc(var(--s)/2)/var(--s) var(--s)
    var(--c1);
	height: 80vh;
    border-top: solid 2px orange;
}

#services_cube {
  --s: 144px; /* control the size*/
  --c1: #b2b2b2;
  --c2: #ffffff;
  --c3: #d9d9d9;
  
  --_g: var(--c3) 0 120deg,#0000 0;
  background:
    conic-gradient(from -60deg at 50% calc(100%/3),var(--_g)),
    conic-gradient(from 120deg at 50% calc(200%/3),var(--_g)),
    conic-gradient(from  60deg at calc(200%/3),var(--c3) 60deg,var(--c2) 0 120deg,#0000 0),
    conic-gradient(from 180deg at calc(100%/3),var(--c1) 60deg,var(--_g)),
    linear-gradient(90deg,var(--c1)   calc(100%/6),var(--c2) 0 50%,
                          var(--c1) 0 calc(500%/6),var(--c2) 0);
  background-size: calc(1.732*var(--s)) var(--s);
  text-align: center;
  height: 65vh;
  /* padding: 10em; */
}

/* #services {
    background: #f9f9f9;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='30' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E"),
	linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);;
    text-align: center;
  	height: 65vh;
	padding: 10em;
} */

#services h2 {
  margin-bottom: 20px;
  text-align: center;
  padding-top: 3em;
  padding-bottom: 2em;
}

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

.card {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Sectors */
/* #sectors {
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    color: #fff;
    text-align: center;
  	height: 65vh;
	padding: 10em;
}
 */
#sectors {
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='30' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E"),
      linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    background-repeat: repeat;
    background-size: auto, cover;
    background-blend-mode: overlay;
    color: white;
    text-align: center;
  	height: 65vh;
	padding: 10em;
	border-top: solid 10px turquoise;
}

#sectors h2 {
  margin-bottom: 20px;
}

.sector-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.sector-grid div {
  background: #f39c12;
  padding: 20px 30px;
  border-radius: 8px;
  /* color: black; */
  font-weight: 800;
}

/* Updates Table */

#updates {
  --s: 41px; /* control the size*/
  --c1: #ffffff;
  --c2: #fafafa;
  
  --_g: var(--c1)        6.1%,var(--c2)  6.4% 18.6%,var(--c1) 18.9% 31.1%,
        var(--c2) 31.4% 43.6%,var(--c1) 43.9% 56.1%,var(--c2) 56.4% 68.6%,#0000 68.9%;
  background:
    radial-gradient(var(--s) at 100% 0   ,var(--_g)),
    radial-gradient(var(--s) at 0    0   ,var(--_g)),
    radial-gradient(var(--s) at 0    100%,var(--_g)),
    radial-gradient(var(--s) at 100% 100%,var(--_g)) var(--c1);
  background-size: var(--s) var(--s);
  /* padding: 5em 0; */
  height: 100vh;
}

#updates .container {
	max-width: 80vw;
}

#updates_new {
  --s: 100px; /* control the size*/
  --c1: #f8b195;
  --c2: #355c7d;
  
  --_g: 
     var(--c2) 6%  14%,var(--c1) 16% 24%,var(--c2) 26% 34%,var(--c1) 36% 44%,
     var(--c2) 46% 54%,var(--c1) 56% 64%,var(--c2) 66% 74%,var(--c1) 76% 84%,var(--c2) 86% 94%;
  background:
    radial-gradient(100% 100% at 100% 0,var(--c1) 4%,var(--_g),#0008 96%,#0000),
    radial-gradient(100% 100% at 0 100%,#0000, #0008 4%,var(--_g),var(--c1) 96%)
    var(--c1);
  background-size: var(--s) var(--s);
  padding: 5em 0;
  height: auto;
}


#updates h2 {
  text-align: center;
  margin-bottom: 20px;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  filter: drop-shadow
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: center;
}

.responsive-table th {
  background-color: #333;
  color: #fff;
}

.responsive-table td a {
  color: #007BFF;
  text-decoration: none;
}

.client-card {
  max-width: 300px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  background-color: #fff;
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
}

.client-logo {
  width: 175px;
  object-fit: contain;
  margin-bottom: 15px;
}

.client-name {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.view-jobs-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.view-jobs-btn:hover {
  background-color: #004d99;
}

.backToHome {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-weight: bold ;
    text-decoration: underline;
    cursor: pointer;
}

/* Testimonials */
.testimonial-slider blockquote {
  background: #ffffff;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  font-style: italic;
  border-left: 5px solid #007BFF;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.testimonial-slider cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

#testimonials {
  background: #833AB4;
  background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  text-align: center;
  height: 90vh;
  padding: 10em;
}

#testimonials .item {
  padding: 20px;
  font-style: italic;
}

#testimonials strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

#testimonials h2, #testimonials .owl-nav {
    color: #fff;
}

/* Contact */
#contact {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  padding: 0;
}

#contact p {
  padding-bottom: 60px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: justify;
}

/* #contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
 */
#contact input,
#contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
  width: 100%;
}

#contact textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button.btn-primary {
  align-self: flex-start;
  background-color: #333;
  color: #fff;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.contact-map {
  flex: 1 1 350px;
  min-height: 300px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f39c12;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

/* Footer */
footer {
  background-color: #222;
  color: #ddd;
  padding: 20px;
  text-align: center;
}
.footer-links a {
  color: #bbb;
  margin: 0 10px;
}
.footer-links a:hover {
  color: #fff;
}

/* === Responsive Layouts === */

/* Responsive CSS based on standard breakpoints */

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 20px 10px;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  .nav-links {
	position: absolute;
	top: 90px;
	right: 0;
	background: #111;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
	padding: 30px;
	gap: 10px;
	margin-top: 10px;
	transform: translateX(100%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 999;
  }
/* When open (e.g., `.open` class is toggled) */
  .nav-links.open {
    display: flex;
	justify-content: flex-end;
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
  }
  
  .nav-links.active {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
  }
  
  .nav-links a {
    padding: 10px;
    width: 100%;
    background-color: #111;
    border-bottom: 1px solid #333;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 35px;
    right: 35px;
  }
  #banner {
    height: 90vh;
    overflow: hidden;
  }
  #banner .owl-carousel .item {
    height: calc(100vh - 80px);
  }
  #banner .owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .caption {
    width: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .caption h2 {
    font-size: 22px;
  }
  .caption p {
    font-size: 14px;
  }
  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }
  #banner .owl-carousel .owl-dots {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  #contact p {
  padding-bottom: 5px;
  text-align: center;
  }
  
  #updates {
	  height: auto;
  }
  
  /* Responsive table behavior for mobile */
  .responsive-table thead {
    display: none;
  }
  
  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }
  
  .responsive-table tr {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    background: #fdfdfd;
	overflow-x: hidden;
  }
  
  .responsive-table td {
    position: relative;
    padding-left: 50%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #eee;
  }
  
  .responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 12px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
  }
  
  .responsive-table td:last-child {
    border-bottom: none;
  }
  
  section {
    scroll-margin-top: 500px; /* or match exact header height */
  }
 
  #testimonials {
	padding: 10em 1em;
  }
  
  .site-content {
    transition: transform 0.3s ease;
  }

  .nav-open .site-content {
    transform: translateY(1px); /* Adjust as needed */
  }


  /* Default: Flex two-column */
  .about-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
	width: 100%;
	justify-content: center;
  }
  
  .about-img {
    flex: 0 0 auto;
  }
  
  .about-img img {
    width: 150px;
    max-width: 100%;
    height: auto;
    padding: 0;
  }
  
  .about-text p {
    text-align: justify;
    padding: 0 1em;
  }

  #services {
    height: auto;
  }

  #sectors {
    height: 60vh;
    padding: 15em 1em;
  } 
}

/* Tablet (769px–1280px) */
@media (min-width: 769px) and (max-width: 1280px) {
  .container {
    width: 90%;
    padding: 30px 15px;
  }
  .navbar {
    justify-content: space-between;
    padding: 20px;
  }
  .nav-links {
    flex-direction: row;
    gap: 20px;
  }
  .caption {
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .caption h2 {
    font-size: 28px;
  }
  .caption p {
    font-size: 16px;
  }
  .btn-primary {
    padding: 12px 28px;
    font-size: 16px;
  }
  #banner .owl-carousel .owl-dots {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-wrapper {
    display: block;
  }

  .about-img {
    display: none; /* hide flexbox image on desktop */
  }

  .about-text {
    position: relative;
  }

  .about-text::before {
    content: "";
    float: left;
    width: 300px;
    height: 465px;
    shape-outside: circle(50%);
    /* clip-path: circle(50%); */
    background: url('../images/dsp_logo.png') no-repeat center center;
    background-size: cover;
    margin: 0 30px 20px 0;
    shape-margin: 15px;
  }
  
}

/* Small desktops (1281px–1440px) */
@media (min-width: 1281px) and (max-width: 1440px) {
  .container {
    width: 85%;
    margin: 0 auto;
  }
  .navbar {
    padding: 10px 20px;
  }
  .nav-links {
    gap: 30px;
  }
  .caption {
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	padding: 20px 0;
	height: 35%;
  }
  .caption h2 {
    font-size: 32px;
  }
  .caption p {
    font-size: 18px;
  }
  .btn-primary {
    padding: 14px 32px;
    font-size: 17px;
  }
  #banner .owl-carousel .owl-dots {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-wrapper {
    display: block;
  }

  .about-img {
    display: none; /* hide flexbox image on desktop */
  }

  .about-text {
    position: relative;
  }

  .about-text::before {
    content: "";
    float: left;
    width: 300px;
    height: 465px;
    shape-outside: circle(50%);
    /* clip-path: circle(50%); */
    background: url('../images/dsp_logo.png') no-repeat center center;
    background-size: cover;
    margin: 0 30px 20px 0;
    shape-margin: 15px;
  }
}

/* Large desktops (≥1441px) */
@media (min-width: 1441px) {
  .container {
    width: 80%;
    margin: 0 auto;
  }
  .caption {
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .caption h2 {
    font-size: 36px;
  }
  .caption p {
    font-size: 20px;
  }
  .btn-primary {
    padding: 16px 36px;
    font-size: 18px;
  }
  #banner .owl-carousel .owl-dots {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-wrapper {
    display: block;
  }

  .about-img {
    display: none; /* hide flexbox image on desktop */
  }

  .about-text {
    position: relative;
  }

  .about-text::before {
    content: "";
    float: left;
    width: 300px;
    height: 465px;
    shape-outside: circle(50%);
    /* clip-path: circle(50%); */
    background: url('../images/dsp_logo.png') no-repeat center center;
    background-size: cover;
    margin: 0 30px 20px 0;
    shape-margin: 15px;
  }
}