/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* clear fix */
.grid:after {
  content: "";
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #080202;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* text-align: justify; */
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #2a2a2a;
}

img {
  /* width: 100%; */
  overflow: hidden;
}

/* 
----------------------------------------------
Our business
----------------------------------------------
*/
.container-xxl {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

text-center {
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  color: #d71254;
  margin-bottom: 0.5rem;
}

.display-5 {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-4,
.col-lg-8,
.col-md-12 {
  position: relative;
  /* width: 100%; */
  padding-right: 15px;
  padding-left: 15px;
}

.nav-pills {
  display: flex;
  flex-direction: column;
}

.nav-link {
  color: #000;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #d71254 !important;
}

.nav-link.active {
  background-color: #d71254;
  color: #fff;
}

.nav-link:hover {
  background-color: #d712547d;
  color: #fff;
}

.tab-content {
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 24px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.fa-check {
  margin-right: 10px;
  color: #d71254 !important;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #d71254;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #d71254;
}

/* 
--------------------------------------------
Under construction
--------------------------------------------
*/
.sdlcreative-construction-container {
  /* text-align: center;
  padding: 40px;
  border: 2px solid #d71254;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px; */
  text-align: center;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
  margin: 20px;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sdlcreative-heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.sdlcreative-message {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sdlcreative-coming-soon {
  font-size: 1.5rem;
  color: #d71254;
  font-weight: bold;
  margin-top: 20px;
}

.sdlcreative-icon {
  font-size: 4rem;
  color: #d71254;
  margin-bottom: 20px;
}

.sdlcreative-construction-container .bounce-animation {
  animation: bounceTopBottom 2s infinite ease-in-out;
  display: block;
  width: 100%;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: "Poppins", sans-serif;
  text-align: justify;
}

::selection {
  background: #de212e;
  color: #fff;
}

::-moz-selection {
  background: #03a4ed;
  color: #fff;
}

@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.page-section {
  margin-top: 120px;
}

.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 2;
  line-height: 44px;
}

.section-heading h2 em {
  font-style: normal;
  color: #03a4ed;
}

.section-heading h2 span {
  color: #d71254;
}

.main-blue-button a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button a {
  display: inline-block;
  background-color: #d71254;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-white-button a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #d71254;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
  background-color: #fff !important;
  height: 80px !important;
  position: fixed !important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e !important;
}

.background-header .main-nav .nav li:hover a {
  color: #d71254 !important;
}

.background-header .nav li a.active {
  color: #d71254 !important;
}

.header-area {
  background-color: #fafafa;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #03a4ed;
  line-height: 100px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.logo h4 span {
  color: #d71254;
}

.background-header .main-nav .logo h4 {
  line-height: 80px;
}

.background-header .main-nav .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

/* .header-area .main-nav .nav li:last-child {
  padding-right: 0px;
  padding-left: 40px;
}

.header-area .main-nav .nav li:last-child a,
.background-header .main-nav .nav li:last-child a {
  color: #fff !important;
  padding: 0px 20px;
  font-weight: 400;
}  ==> commented these blocks bcoz facing styling issue in nav */

/* .header-area .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:last-child a.active {
  color: #fff !important;
} */

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #2a2a2a;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li a {
  color: #2a2a2a;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #d71254 !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #d71254 !important;
  opacity: 1;
}

/* .header-area .main-nav .nav li:last-child a:hover,
.background-header .main-nav .nav li:last-child a:hover {
  background-color: #03a4ed;
} */

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s,
    z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #d71254 !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #d71254;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  /* .header-area .main-nav .nav li:last-child,
  .background-header .main-nav .nav li:last-child {
    display: none;
  } */
  .header-area .main-nav .nav li:nth-child(6),
  .background-header .main-nav .nav li:nth-child(6) {
    padding-right: 0px;
  }
}

@media (max-width: 767px) {
  .background-header .main-nav .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #d71254 !important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .background-header .nav {
    margin-top: 80px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #d71254 !important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3b566e;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: #fff;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #d71254;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #d71254;
  border-radius: 50%;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* padding: 226px 0px 120px 0px; */
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.main-banner:after {
  content: "";
  /* background-image: url(../images/baner-dec-left.png); */
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 100px;
  width: 193px;
  height: 467px;
}

.main-banner:before {
  content: "";
  /* background-image: url(../images/baner-dec-right.png); */
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 100px;
  width: 98px;
  height: 290px;
}

.main-banner .left-content {
  margin-right: 45px;
}

/* .main-banner .left-content h6 {
  text-transform: uppercase;
  font-size: 20px;
  color: #d71254;
  margin-bottom: 20px;
  font-weight: 600;
} */

.heading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.heading-container .heading {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.heading-container div {
  border-bottom: 2px solid #d71254;
  width: 84px;
  margin-top: 10px;
}

.main-banner .left-content .about-us-head {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 72px;
}

.main-banner .left-content h4 {
  text-transform: uppercase;
  color: #d71254;
  margin-bottom: 15px;
  font-size: 18px;
}

/* .main-banner .left-content h2 {
  font-size: 50px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 72px;
} */

.main-banner .left-content h2 em {
  color: #03a4ed;
  font-style: normal;
}

.main-banner .left-content h2 span {
  color: #d71254;
}

.main-banner .left-content p {
  margin: 20px 0px;
}

.main-banner .left-content form {
  margin-top: 30px;
  width: 470px;
  height: 66px;
  position: relative;
}

.main-banner .left-content form button {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #d71254;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  outline: none;
  border: none;
}

.main-banner .left-content form input {
  width: 470px;
  height: 66px;
  background-color: #03a4ed;
  border-radius: 33px;
  border: none;
  outline: none;
  padding: 0px 25px;
  color: #fff;
  letter-spacing: 0.25px;
  font-size: 15px;
  font-weight: 300;
}

.main-banner .left-content form input::placeholder {
  color: #fff;
}

/* 
---------------------------------------------
About Us Style
--------------------------------------------- 
*/

#about {
  margin-top: 120px;
}

.about-us {
  background-image: url(../images/about-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 140px 0px 120px 0px;
}

.about-us .left-image {
  margin-right: 45px;
}

.about-us .services .item {
  margin-bottom: 30px;
}

.about-us .services .item .icon {
  float: left;
  margin-right: 25px;
}

.about-us .services .item .icon img {
  max-width: 70px;
}

.about-us .services .item h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-us .services .item p {
  color: #fff;
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.our-services {
  margin-top: 0px;
  padding-top: 120px;
}

.our-services .left-image {
  margin-right: 45px;
}

.our-services .section-heading h2 {
  margin-right: 100px;
}

.our-services .section-heading p {
  margin-top: 30px;
  margin-bottom: 60px;
}

.our-services .progress-skill-bar {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.our-services .progress-skill-bar span {
  position: absolute;
  top: 0;
  font-size: 18px;
  font-weight: 600;
  color: #03a4ed;
}

.our-services .first-bar span {
  left: 69%;
}

.our-services .second-bar span {
  left: 81%;
}

.our-services .third-bar span {
  left: 88%;
}

.our-services .progress-skill-bar h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 14px;
}

.our-services .progress-skill-bar .full-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #f7eff1;
  position: relative;
  z-index: 1;
}

.our-services .progress-skill-bar .filled-bar {
  background: rgb(255, 77, 30);
  background: linear-gradient(
    105deg,
    rgba(255, 77, 30, 1) 0%,
    rgba(255, 44, 109, 1) 100%
  );
  height: 6px;
  border-radius: 3px;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
}

.our-services .first-bar .filled-bar {
  width: 71%;
}

.our-services .second-bar .filled-bar {
  width: 83%;
}

.our-services .third-bar .filled-bar {
  width: 90%;
}

/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

.our-portfolio {
  /* padding-top: 120px; */
  margin-top: 0px;
  margin-bottom: 24px;
}

.our-portfolio .section-heading h2 {
  text-align: center;
  /* margin: 0px 90px 0px 90px; */
  /* margin-bottom: 120px; */
  margin-bottom: 20px;
  padding: 0px 10px;
  position: relative;
  z-index: 1;
}

.our-portfolio .item {
  position: relative;
}

.our-portfolio .item:hover .hidden-content {
  top: -100px;
  opacity: 1;
  visibility: visible;
}

.our-portfolio .item:hover .showed-content {
  top: 90px;
}

.our-portfolio .hidden-content {
  background: rgb(255, 77, 30);
  /* background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%); */
  /* background: linear-gradient(
    105deg,
    rgba(10, 25, 50, 1) 0%,
    rgba(5, 50, 100, 1) 100%
  ); */
  background: linear-gradient(to right, #ca1166, #8b003f, #ff6699);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  top: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  transition: all 0.5s;
}

.our-portfolio .hidden-content:after {
  width: 20px;
  height: 20px;
  position: absolute;
  background: rgb(255, 77, 30);
  content: "";
  left: 50%;
  bottom: -8px;
  margin-left: -5px;
  transform: rotate(45deg);
 background: linear-gradient(to right, #ca1166, #8b003f, #ff6699);
  z-index: -1;
}

.our-portfolio .hidden-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.our-portfolio .hidden-content p {
  color: #fff;
}

.our-portfolio .showed-content {
  top: 0px;
  position: relative;
  z-index: 3;
  background-color: #fff;
  text-align: center;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
.our-portfolio .showed-content img {
  max-width: 200px;
  max-height: 150px;
}

/* .our-portfolio .showed-content img {
  max-width: 100px;
} */

/* 
---------------------------------------------
Blog
--------------------------------------------- 
*/

.our-blog {
  position: relative;
  margin-top: 80px;
  padding-top: 120px;
}

.our-blog .section-heading h2 {
  margin-right: 180px;
}

.our-blog .top-dec {
  text-align: right;
  margin-top: -80px;
}

.our-blog .top-dec img {
  max-width: 270px;
}

.our-blog .left-image {
  position: relative;
}

.our-blog .left-image img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.our-blog .left-image .info {
  position: relative;
}

.our-blog .left-image .info .inner-content {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-right: 75px;
  position: absolute;
  margin-top: -100px;
  padding: 30px;
}

.our-blog .left-image ul li {
  display: inline-block;
  font-size: 15px;
  color: #afafaf;
  font-weight: 300;
  margin-right: 20px;
}

.our-blog .left-image ul li:last-child {
  margin-right: 0px;
}

.our-blog .left-image ul li i {
  color: #ff4d61;
  font-size: 16px;
  margin-right: 8px;
}

.our-blog .left-image h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 20px 0px 15px 0px;
}

.our-blog .left-image .info .main-blue-button {
  position: absolute;
  bottom: -80px;
  left: 0;
}

.our-blog .right-list {
  margin-left: 30px;
}

.our-blog .right-list ul li {
  display: inline-flex;
  width: 100%;
  margin-bottom: 30px;
}

.our-blog .right-list .left-content {
  margin-right: 45px;
}

.our-blog .right-list .left-content span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 300;
}

.our-blog .right-list .left-content span i {
  color: #ff4d61;
  font-size: 16px;
  margin-right: 8px;
}

.our-blog .right-list .left-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 20px 0px 15px 0px;
}

.our-blog .right-list .right-image img {
  width: 250px;
  border-radius: 20px;
}

/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-us {
  padding: 160px 0px;
  background-image: url(../images/contact-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.contact-us .section-heading h2,
.contact-us .section-heading h2 em,
.contact-us .section-heading h2 span {
  color: #fff;
}

.contact-us .section-heading p {
  color: #fff;
  margin-top: 30px;
}

.phone-info {
  margin-top: 40px;
}

.phone-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.phone-info h4 span i {
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  background-color: #fff;
  border-radius: 50%;
  color: #ff3b2c;
  font-size: 22px;
  margin-left: 30px;
  margin-right: 15px;
}

.phone-info h4 span a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

form#contact .contact-dec {
  position: absolute;
  right: -166px;
  bottom: 0;
}

form#contact .contact-dec img {
  max-width: 178px;
}

form#contact {
  margin-left: 30px;
  position: relative;
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 33px;
  background-color: #d1f3ff;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 20px;
  margin-bottom: 20px;
}

form#contact input::placeholder {
  color: #2a2a2a;
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 180px;
  min-height: 140px;
  height: 140px;
  border-radius: 20px;
  background-color: #d1f3ff;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 20px;
}

form#contact textarea::placeholder {
  color: #2a2a2a;
}

form#contact button {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: none;
  outline: none;
  transition: all 0.3s;
}

form#contact button:hover {
  background-color: #d71254;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer p {
  text-align: center;
  margin: 30px 0px 45px 0px;
}

footer p a {
  color: #d71254;
}

/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1645px) {
  form#contact .contact-dec {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-banner {
    padding-top: 196px;
  }
  .main-banner .left-content {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .main-banner:after {
    top: 76px;
    z-index: -1;
  }
  .main-banner .left-content form,
  .main-banner .left-content form input {
    width: 100% !important;
  }
  #about {
    margin-top: 0px;
  }
  .about-us {
    position: relative;
    background-image: none;
    padding: 0px;
  }
  .about-us .left-image {
    margin-right: 0px;
    position: absolute;
    bottom: -220px;
    right: 0;
  }
  .about-us .services {
    text-align: center;
  }
  .about-us .services .item {
    background: rgb(255, 77, 30);
    /* background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%); */
    background: linear-gradient(
      105deg,
      rgba(10, 25, 50, 1) 0%,
      rgba(5, 50, 100, 1) 100%
    );

    padding: 30px;
    border-radius: 20px;
    display: inline-block;
  }
  .about-us .services .item .right-text {
    text-align: left;
  }
  .our-services {
    margin-top: 200px;
  }
  .our-services .left-image {
    margin-right: 0px;
    margin-bottom: 45px;
  }
  .our-services .section-heading h2,
  .our-services .section-heading p {
    margin-right: 0px;
    text-align: center;
  }
  .our-portfolio .section-heading h2 {
    margin: 0px 0px 80px 0px;
  }
  .our-portfolio .item {
    margin-bottom: 15px;
  }
  .our-blog {
    margin-top: 0px;
  }
  .our-blog .top-dec {
    display: none;
  }
  .our-blog .section-heading h2 {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .our-blog .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
  }
  .our-blog .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
  .our-blog .left-image {
    margin-bottom: 45px;
  }
  .contact-us {
    margin-top: 60px;
    padding: 120px 0px;
  }
  .contact-us .section-heading {
    text-align: center;
  }
  form#contact {
    margin-left: 0px;
    margin-top: 30px;
  }
  form#contact .contact-dec {
    display: none;
  }
  footer p {
    margin: 15px 0px 30px 0px;
  }
}

@media (max-width: 767px) {
  .main-banner {
    padding-top: 20px;
  }
  .about-us .left-image {
    bottom: -280px;
  }
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
}

@media (max-width: 480px) {
  .main-banner {
    /* padding-top: 56px; */
    padding: 16px;
  }

  .heading-container {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .left-content p {
    text-align: start;
  }

  .sdlcreative-vision-mission-section {
    padding: 16px;
  }
}

/* SDL Stylesheet Slider section */

.sdlCreativeGroups-sliderContainer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.sdlCreativeGroups-owl-carousel .sdlCreativeGroups-slide {
  position: relative;
  text-align: center;
}
.sdlCreativeGroups-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
/* .sdlCreativeGroups-overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      transparent 24px,
      rgba(255, 255, 255, 0.3) 25px
    ),
    linear-gradient(90deg, transparent 24px, rgba(255, 255, 255, 0.3) 25px);
  background-size: 25px 25px; 
  opacity: 0.4; 
  z-index: 2;
} */

.sdlCreativeGroups-slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}
.sdlCreativeGroups-header {
  font-size: 2.5rem;
  font-weight: bold;
}
.sdlCreativeGroups-paragraph {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #f0f0f0;
  transition: color 0.3s ease;
}
.sdlCreativeGroups-paragraph:hover {
  color: #ff9800;
}
.sdlCreativeGroups-Image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
/* Carousel Navigation Styles */

.owl-nav{
  display: none;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: black !important;
  transition: background 0.3s ease, color 0.3s ease;
}
.owl-nav button.owl-prev {
  left: 10px;
}
.owl-nav button.owl-next {
  right: 10px;
}
.owl-nav button:hover {
  background: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .sdlCreativeGroups-header {
    font-size: 2rem;
    margin-top: 10px;
  }
  .sdlCreativeGroups-paragraph {
    font-size: 1rem;
    margin-top: 8px;
  }
  .sdlCreativeGroups-slider-text {
    top: 45%;
  }
}

@media (max-width: 768px) {
  .sdlCreativeGroups-header {
    font-size: 1.8rem;
    margin-top: 15px;
  }
  .sdlCreativeGroups-paragraph {
    font-size: 0.9rem;
    margin-top: 6px;
  }
  .sdlCreativeGroups-slider-text {
    top: 40%;
  }
}
@media (max-width: 480px) {
  .sdlCreativeGroups-header {
    font-size: 1.5rem;
    margin-top: 185px;
  }
  .sdlCreativeGroups-paragraph {
    font-size: 0.8rem;
    margin-top: 4px;
  }
  .sdlCreativeGroups-slider-text {
    top: 35%;
  }
}

.sdlCreativeGroups-waveContainer {
  position: absolute;
  /* bottom: -2px; */
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  z-index: 2;
}

.sdlCreativeGroups-wave {
  position: absolute;
  width: 200%;
  height: 100%;
}

.sdlCreativeGroups-wave1 {
  animation: waveFlow1 6s linear infinite,
    waveColorEffect 5s ease-in-out infinite alternate;
}

.sdlCreativeGroups-wave2 {
  top: 10px;
  opacity: 0.5;
  animation: waveFlow2 8s linear infinite reverse,
    waveColorEffect 6s ease-in-out infinite alternate;
}

.sdlCreativeGroups-wave3 {
  top: 20px;
  opacity: 0.3;
  animation: waveFlow3 10s linear infinite,
    waveColorEffect 7s ease-in-out infinite alternate;
}

/* Wave Animations */
@keyframes waveFlow1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes waveFlow2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes waveFlow3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ✨ Color Effect using Filter */
@keyframes waveColorEffect {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(45deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}

/* About section bounce image  */

@keyframes bounceTopBottom {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.bounce-animation img {
  animation: bounceTopBottom 2s infinite ease-in-out;
  display: block;
  width: 100%;
}

/* Vision & Mission Section */
.sdlcreative-vision-mission-section {
  /* background: url(../images/illustrator/vision-mision-bg-2.jpg) center/cover; */
  /* background-repeat: no-repeat; */

  /* color: #fba8ee; */
  padding: 32px;
  text-align: center;
}

/* Container */
.sdlcreative-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.sdlcreative-header {
  margin-bottom: 40px;
}
/*  */
.sdlcreative-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Tabs Layout */
.sdlcreative-tabs-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Tabs */
.sdlcreative-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sdlcreative-tab {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.2rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.sdlcreative-tab i {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px;
  border-radius: 50%;
  color: #fff;
}

/* Hover & Active State */
.sdlcreative-tab:hover,
.sdlcreative-tab.active {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Tab Content */
.sdlcreative-tab-content {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.sdlcreative-tab-panel {
  display: none;
}

.sdlcreative-tab-panel.active {
  display: block;
}

/* Text Styling */
.sdlcreative-text {
  font-size: 1.2rem;
  line-height: 1.6;
}
/* Tabs */
.sdlcreative-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sdlcreative-tab {
  background: linear-gradient(
    135deg,
    #ff416c,
    #ff4b2b
  ); /* Gradient for modern look */
  color: #fff;
  border: none;
  padding: 15px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 3px 3px 10px rgba(255, 75, 43, 0.3);
}

.sdlcreative-tab i {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover & Active Effects */
.sdlcreative-tab:hover,
.sdlcreative-tab.active {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  transform: scale(1.05);
  box-shadow: 3px 3px 15px rgba(255, 75, 43, 0.5);
}

/* Tab Button Container */
.sdlcreative-tabs-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

/* Wave Animation */
.sdlcreativeGroups-footer-wave {
  position: relative;
  width: 100%;
  height: 120px;
  margin-bottom: -2px; /* Slight overlap to remove gap */
  overflow: hidden;
}

.sdlcreativeGroups-footer-wave svg {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300%;
  height: 120px;
  animation: waveFlow 8s linear infinite;
}

/* Wave Animation Keyframes */
@keyframes waveFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.66%);
  }
}

/* Footer Styling */
.sdlcreativeGroups-footer {
  /* background: linear-gradient(to right, #4b43dd, #b286f5, #7aa9f5); */
  /* background: linear-gradient(to right, #8b0000, #de212e, #ff6666); */





    /* background: linear-gradient(to right, #ff6666, #de212e, #8b0000); */
  /* background: linear-gradient(to right, #8b0000, #ff6666, #de212e); */
  background: linear-gradient(to right, #ca1166, #8b003f, #ff6699);
  color: #fff;
  padding: 50px 0;
  text-align: center;
  position: relative;
}

.sdlcreativeGroups-footer .footer-top {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.sdlcreativeGroups-footer .footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.sdlcreativeGroups-footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sdlcreativeGroups-footer ul {
  list-style: none;
  padding: 0;
}

.sdlcreativeGroups-footer ul li {
  margin-bottom: 8px;
}

.sdlcreativeGroups-footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sdlcreativeGroups-footer ul li a i {
  font-size: 16px;
}

.sdlcreativeGroups-footer ul li a:hover {
  color: #ffbd69;
}

.sdlcreativeGroups-footer .social-icons {
  text-align: center;
}

.sdlcreativeGroups-footer .social-icons a {
  display: inline-block;
  margin: 0 10px;
  color: #ffbd69;
  font-size: 18px;
  transition: 0.3s;
}

.sdlcreativeGroups-footer .social-icons a:hover {
  color: #ff5733;
}

/* Separate Copyright Section */
.copyright-section {
  /* background: #104e9d; */
  /* background: linear-gradient(to right, #ff6666, #de212e, #8b0000); */
  /* background: linear-gradient(to right, #8b0000, #ff6666, #de212e); */
  background: linear-gradient(to right, #ca1166, #8b003f, #ff6699);
  border-top: 2px dotted white;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

.copyright-section .copyright-text {
  color: #fff;
}

.copyright-section a {
  color: #ffbd69;
  text-decoration: none;
}

.copyright-section a:hover {
  color: #ff5733;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sdlcreativeGroups-footer .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .sdlcreativeGroups-footer .footer-links,
  .sdlcreativeGroups-footer .footer-legal,
  .sdlcreativeGroups-footer .social-icons {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

  .sdlcreativeGroups-footer ul li a {
    font-size: 16px;
  }
}
/* Quick Links Styling */
.footer-links {
  text-align: left;
}
.footer-legal {
  text-align: left;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
}

/* vision */

.sdlcreative-column:hover img {
  transform: rotateY(-180deg);
}
.sdlcreative-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.sdlcreative-column {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.sdlcreative-vision-box,
.sdlcreative-mission-box {
  /* background: linear-gradient(135deg, #f9f9f9, #ffffff, #eaeaea); */
  background: linear-gradient(135deg, #de222f, #ffffff, #de212e);
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 5px 15px rgba(224, 28, 44, 0.081);
  /* transition: transform 0.3s ease, box-shadow 0.3s ease,
    background 0.5s ease-in-out; */
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* .sdlcreative-box:hover {
  transform: rotateY(180deg);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
} */

.sdlcreative-vision-box:hover,
.sdlcreative-mission-box:hover {
  /* transform: rotateY(180deg); */
  box-shadow: 0 10px 25px rgba(224, 28, 44, 0.297);
  /* transform-style: preserve-3d; */
  /* transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); */
}

.show {
  display: block;
}

.hide {
  display: none;
}

.sdlcreative-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  /* background: #007bff; */
  background-color: #d71254;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  transition: transform 0.5s ease-in-out, background 0.5s ease;
}

/* .sdlcreative-box:hover */
.sdlcreative-icon-wrapper {
  transform: rotate(360deg);
  /* background: #ffcc00; */ /* Icon color change on hover */
  background-color: #000;
}

.sdlcreative-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* .sdlcreative-box:hover */
/* .sdlcreative-title:hover {
  color: white;
} */

.sdlcreative-text {
  font-size: 16px;
  font-weight: 600;
  color: #0e0d0d;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* .sdlcreative-box:hover */
/* .sdlcreative-text:hover {
  color: white;
} */

/* Responsive Design */
@media (max-width: 768px) {
  .sdlcreative-row {
    flex-direction: column;
    align-items: center;
  }
}


/* 
---------------------------------
Scroll to top
---------------------------------
 */
#sdlcreative-scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  bottom: 20px; /* Place the button 20px from the bottom */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #d712548b; /* Dark grey background */
  color: white; /* White text */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#sdlcreative-scrollToTopBtn:hover {
  background-color: #d71254; /* Add a dark-grey background on hover */
}

#sdlcreative-scrollToTopBtn i {
  font-size: 24px; }



  /* Rain effect mouse */

  .rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.raindrop {
    position: absolute;
    width: 2px;
    height: 15px;
    background: linear-gradient(to right, #ca1166, #8b003f, #ff6699);
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}



/* Water flow  */




        #cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: linear-gradient(to right, #ca1166, #8b003f, #ff6699);
            border-radius: 50%;
            pointer-events: none;
            box-shadow: 0 0 15px rgba(255, 102, 102, 0.8);
            animation: rippleEffect 0.6s infinite ease-in-out;
        }

        @keyframes rippleEffect {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(3);
                opacity: 0;
            }
        }



        
    .sdlcreativeGroups-logo {
      height: 185px;
      width: auto;
      object-fit: contain;
      display: block;
      margin-top: -35px;
      margin-bottom: -35px;
      margin-left: -50px;
    }

    /* Laptops & Tablets */

    @media (max-width: 1024px) {
      .sdlcreativeGroups-logo {
        height: 130px;
        margin-top: -10px;
        margin-bottom: -30px;
        margin-left: -50px;
      }
    }

    /* Tablets (Portrait) */
    @media (max-width: 768px) {
      .sdlcreativeGroups-logo {
        height: 90px;
        margin-top: -25px;
        margin-bottom: -25px;
        margin-left: -50px;
      }
    }

    /* Mobile Phones (Landscape) */
    @media (max-width: 576px) {
      .sdlcreativeGroups-logo {
        height: 120px;
        margin-top: -5px;
        margin-bottom: -20px;
        margin-left: -50px;
      }

      /* Mobile Phones (Portrait/Smallest) */
      @media (max-width: 400px) {
        .sdlcreativeGroups-logo {
          height: 100px;
          margin-top: 4px;
          margin-bottom: -18px;
          margin-left: -50px;
        }
      }

      .about-us-head {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 15px;
      }

      .left-content h4 {
        font-style: italic;
        color: #750c0c;
        margin-bottom: 20px;
      }

      .left-content p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
      }}


      /* SECTION: Special Offers */
#offers.sdlsheet-section {
  padding: 80px 0;
  background-color: #fff;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */

}

/* CONTAINER */
.sdlsheet-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* HEADING CONTAINER */
.sdlsheet-heading-container {
  text-align: center;
  margin-bottom: 40px;
}

.sdlsheet-heading {
  font-size: 32px;
  font-weight: 700;
  color: #750c0c;
  position: relative;
}

.sdlsheet-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #750c0c;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}


.sdlsheet-offer-box:hover {
  transform: translateY(-5px);
}

.sdlsheet-offer-box h4 {
  font-size: 22px;
  color: #750c0c;
  font-weight: 600;
  margin-bottom: 10px;
}

.sdlsheet-offer-box p {
  color: #555;
  font-size: 16px;
  margin: 0;
}
.sdlsheet-offer-box {
  
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease;
}

.sdlsheet-offer-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}




/*** Appointment  Start ***/
.appointment {
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg); */
  background-color: #d71254;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.appointment .appointment-form {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
  object-fit: cover;
  border-radius: 10px;
}

.appointment .appointment-time {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, .2));
  object-fit: cover;
  border-radius: 10px;
}
/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
  position: relative;
  margin-bottom: 60px;
  background-image: linear-gradient(rgba(252, 152, 195, 0.3), rgba(255, 255, 255, 0.3), rgba(136, 76, 210, 0.3));
  border-radius: 10px;
  z-index: 9;
}

.counter-section .counter-item {
  text-align: center;
  background: rgba(255, 255, 255, .5) !important;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  object-fit: cover;
  border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
  position: absolute;
  bottom: 0; 
  left: 50%; 
  transform: translateX(-50%); 
  margin-bottom: -50px; 
  margin-left: -45px; 
  transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
  width: 110px;
  height: 110px;
  border-radius: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
}

.sdlsheetcounterText {
  color: #6a0dad; /* Violet color */
}

.sdlsheetheading{
  color: #fff;
  font-weight: 700;
}
/*** Counter End ***/


/*** Events Start ***/
.gallery .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-img img {
  transition: 0.5s;
}

.gallery .gallery-img:hover img {
  transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.gallery .gallery-img .search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
  z-index: 2;
  
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
  opacity: 1;
}
/*** Events End ***/


/*** Pricing Start ***/
.pricing {
  background-color: mediumpurple;
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 40px;
}

.pricing .pricing-item {
  color: var(--bs-white);
}

.pricing .pricing-item .pricing-content {
  background: rgba(255, 255, 255, 0.4);
}

.pricing .owl-carousel.pricing-carousel {
  position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  font-size: 40px;
  color: var(--bs-white);

}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
  margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
  color: var(--bs-primary);
}

.sdlsheetPayment{
  color: #851361;
  font-size: 24px;
}

.sdlsheetPlan{
  color: #1b08b0 !important;
}
/*** Pricing End ***/



.sdlsheet-contact-section {
  background-color: #f8f9fa;
}

.sdlsheet-heading {
  font-size: 2.5rem;
  color: #750c0c;
  font-weight: bold;
}

.sdlsheet-subheading {
  color: #555;
  font-size: 1.1rem;
}
.sdlsheet-Pricesubheading{
  color: #fff;
  font-size: 1.1rem;
}
.sdlsheet-contact-info {
  background: #fff;
  border-left: 4px solid #750c0c;
  transition: transform 0.3s ease;
}

.sdlsheet-contact-info:hover {
  transform: translateY(-5px);
}

.sdlsheet-contact-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.sdlsheet-contact-list a {
  color: #750c0c;
  text-decoration: none;
}

.sdlsheet-map-container iframe {
  border-radius: 10px;
}

/* Animation (if you use Animate.css or WOW.js) */
.wow {
  visibility: hidden;
}
/* ====== Gallery Sliders ====== */
.sdl-section {
  padding: 50px 20px;
  text-align: center;
}
/* ====== Section Headings - Base ====== */
.sdl-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: left;
  font-family: 'Playfair Display', serif;
  position: relative;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 40px; /* space for sparkle icon */
}

.sdl-title::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
}

.sdl-title-highlight {
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

/* ====== Per-section custom glam colors ====== */

/* Bridal */
.sdl-bridal-section .sdl-title {
  color: #750c0c;
}
.sdl-bridal-section .sdl-title::before {
  color: #d4af37; /* gold sparkle */
}
.sdl-bridal-section .sdl-title::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -10px;
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, #d4af37, #750c0c);
  border-radius: 2px;
}
.sdl-bridal-section .sdl-title-highlight {
  background: linear-gradient(90deg, rgba(255,239,210,0.7), rgba(255,255,255,0));
}

/* Mehndi */
.sdl-mehndi-section .sdl-title {
  color: #3b5d2a;
}
.sdl-mehndi-section .sdl-title::before {
  color: #bfa44d; /* green-gold sparkle */
}
.sdl-mehndi-section .sdl-title::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -10px;
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, #bfa44d, #3b5d2a);
  border-radius: 2px;
}
.sdl-mehndi-section .sdl-title-highlight {
  background: linear-gradient(90deg, rgba(235,255,210,0.7), rgba(255,255,255,0));
}

/* Jewels */
.sdl-jewels-section .sdl-title {
  color: #704214;
}
.sdl-jewels-section .sdl-title::before {
  color: #ffcc00; /* bright gold sparkle */
}
.sdl-jewels-section .sdl-title::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -10px;
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, #ffcc00, #704214);
  border-radius: 2px;
}
.sdl-jewels-section .sdl-title-highlight {
  background: linear-gradient(90deg, rgba(255,245,210,0.7), rgba(255,255,255,0));
}

/* Saree Draping */
.sdl-saree-section .sdl-title {
  color: #8a2f4c;
}
.sdl-saree-section .sdl-title::before {
  color: #e6b8c0; /* rose-gold sparkle */
}
.sdl-saree-section .sdl-title::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -10px;
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, #e6b8c0, #8a2f4c);
  border-radius: 2px;
}
.sdl-saree-section .sdl-title-highlight {
  background: linear-gradient(90deg, rgba(255,228,236,0.7), rgba(255,255,255,0));
}


/* Same image size for all sliders */
.sdl-slider-img {
  width: 100%; /* full width in slider item */
  height: 800px; /* uniform height */
  object-fit: cover;
  transform-origin: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.8);
  transition: transform 0.3s ease;
}

.sdl-slider-img:hover {
  transform: scale(1.05);
}

/* Section backgrounds */
.sdl-bridal-section { background: #fff7f7; }
.sdl-mehndi-section { background: #fef2f2; }
.sdl-jewels-section { background: #fff5f5; }
.sdl-saree-section { background: #fdf0f0; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .sdl-slider-img {
    height: 400px; /* smaller height for mobile */
    box-shadow: 0 2px 10px rgba(0,0,0,0.6); /* softer shadow on mobile */
  }
}
/* shimmer overlay using ::after so original background stays */
@keyframes sdl-shimmer {
  from { transform: translateX(-150%); }
  to   { transform: translateX(150%); }
}

.sdl-title-highlight {
  position: relative;
  display: inline-block;
  overflow: hidden; /* hide shimmer outside */
  padding: 5px 10px;
  border-radius: 5px;
  /* keep your existing background - shimmer will overlay on top */
}

/* overlay */
.sdl-title-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;              /* won't block clicks */
  transform: translateX(-150%);      /* start offscreen left */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0) 100%
  );
  /* keep invisible until we add the class */
  opacity: 1;
}

/* animate the ::after when sparkle class is present */
.sdl-title-highlight.sparkle::after {
  animation: sdl-shimmer 1.6s ease-in-out forwards;
}
