/* font family
	============================================================================================ */
/* color variables
	============================================================================================ */
/* google fonts
	============================================================================================ */
@import url("https://fonts.googleapis.com/css?family=Rajdhani:400,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
/* mixin start
	============================================================================================ */
/* Medium Layout: 1280px */
/* Tablet Layout: 768px */
/* Mobile Layout: 320px */
/* Wide Mobile Layout: 480px */
/* mixin end
	============================================================================================ */
/* global style start
	============================================================================================ */
body {
  color: #797979;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.667;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}
button:focus {
  outline: 0;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  color: #3a414e;
  line-height: 1.25;
}

h1,
.h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 600px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}

h2,
.h2 {
  font-size: 28px;
  font-weight: 700;
}
@media (min-width: 1000px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}

h3, .h3 {
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 1000px) {
  h3, .h3 {
    font-size: 22px;
  }
}

.pb-85px {
  padding-bottom: 45px;
}
@media (min-width: 1000px) {
  .pb-85px {
    padding-bottom: 85px;
  }
}

.section-margin {
  margin: 60px 0;
}
@media (min-width: 1000px) {
  .section-margin {
    margin: 100px 0;
  }
}
@media (min-width: 1200px) {
  .section-margin {
    margin: 135px 0;
  }
}
.section-margin--medium {
  margin: 40px 0;
}
@media (min-width: 800px) {
  .section-margin--medium {
    margin: 80px 0;
  }
}
@media (min-width: 1200px) {
  .section-margin--medium {
    margin: 120px 0;
  }
}

.section-padding {
  padding: 60px 0;
}
@media (min-width: 1000px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (min-width: 1200px) {
  .section-padding {
    padding: 135px 0;
  }
}
.section-padding--small {
  padding: 60px 0;
}
@media (min-width: 1000px) {
  .section-padding--small {
    padding: 100px 0;
  }
}

.bg-magnolia {
  background: #faf9ff;
}

/* global style end
	============================================================================================ */
/* header style start
	============================================================================================ */
.header_area {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: background 0.4s, all 0.3s linear;
}
.header_area .navbar-right {
  min-width: 200px;
  text-align: right;
}
@media (max-width: 991px) {
  .header_area .navbar-right {
    margin: 20px 0;
  }
}
.header_area .navbar-brand {
  margin-right: 30px;
}
.header_area .navbar-social {
  min-width: 95px;
  float: right;
}
.header_area .navbar-social li {
  margin-right: 12px;
}
.header_area .navbar-social li i, .header_area .navbar-social li span {
  font-size: 13px;
  color: #242429;
}
.header_area .navbar-social li:last-child {
  margin-right: 0;
}
.header_area .navbar-social li a:hover i, .header_area .navbar-social li span {
  color: #21146a;
}
.header_area .menu_nav {
  width: 100%;
}
.header_area .navbar {
  background: transparent;
  padding: 5px 0;
  border: 0px;
  border-radius: 0px;
  width: 100%;
}
@media (min-width: 991px) {
  .header_area .navbar {
    padding: 20px 0;
  }
}
.header_area .navbar .nav .nav-item {
  margin-right: 30px;
}
.header_area .navbar .nav .nav-item .nav-link {
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
  display: inline-block;
}
.header_area .navbar .nav .nav-item .nav-link:after {
  display: none;
}
.header_area .navbar .nav .nav-item:hover .nav-link, .header_area .navbar .nav .nav-item.active .nav-link {
  color: #fff;
  opacity: 0.75;
}
.header_area .navbar .nav .nav-item.submenu {
  position: relative;
}
.header_area .navbar .nav .nav-item.submenu ul {
  border: none;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
  margin: 0px;
  background: #fff;
}
@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu ul {
    position: absolute;
    top: 120%;
    left: 0px;
    min-width: 200px;
    text-align: left;
    opacity: 0;
    transition: all 300ms ease-in;
    visibility: hidden;
    display: block;
    border: none;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.4);
  }
}
.header_area .navbar .nav .nav-item.submenu ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #eeeeee transparent transparent transparent;
  position: absolute;
  right: 24px;
  top: 45px;
  z-index: 3;
  opacity: 0;
  transition: all 400ms linear;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item {
  display: block;
  float: none;
  margin-right: 0px;
  border-bottom: 1px solid #ededed;
  margin-left: 0px;
  transition: all 0.4s linear;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
  line-height: 45px;
  color: #21146a !important;
  padding: 0px 30px;
  transition: all 150ms linear;
  display: block;
  margin-right: 0px;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item:last-child {
  border-bottom: none;
}
.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover .nav-link {
  background-color: #21146a;
  color: #fff !important;
}
@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
}
.header_area .navbar .nav .nav-item.submenu:hover ul .nav-item {
  margin-top: 0px;
}
.header_area .navbar .nav .nav-item:last-child {
  margin-right: 0px;
}
.header_area .navbar .search {
  font-size: 12px;
  line-height: 60px;
  display: inline-block;
  margin-left: 80px;
}
.header_area .navbar .search i {
  font-weight: 600;
}
.header_area.navbar_fixed .main_menu {
  position: fixed;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  background: #412fb3;
  z-index: 99;
  transform: translateY(70px);
  transition: transform 500ms ease, background 500ms ease;
  -webkit-transition: transform 500ms ease, background 500ms ease;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}
.header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
  line-height: 20px;
}
@media (min-width: 992px) {
  .header_area.white_menu .navbar .navbar-brand img {
    display: none;
  }
  .header_area.white_menu .navbar .navbar-brand img + img {
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .header_area.white_menu .navbar .navbar-brand img {
    display: inline-block;
  }
  .header_area.white_menu .navbar .navbar-brand img + img {
    display: none;
  }
}
.header_area.white_menu .navbar .nav .nav-item .nav-link {
  color: #fff;
}
.header_area.white_menu.navbar_fixed .main_menu .navbar .navbar-brand img {
  display: inline-block;
}
.header_area.white_menu.navbar_fixed .main_menu .navbar .navbar-brand img + img {
  display: none;
}
.header_area.white_menu.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
  line-height: 70px;
}

.top_menu {
  background: #ec9d5f;
}
.top_menu .float-left a {
  line-height: 40px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 50px;
  transition: all 0.3s ease 0s;
}
.top_menu .float-left a:last-child {
  margin-right: 0px;
}
.top_menu .float-right .pur_btn {
  color: #fff;
  line-height: 40px;
  display: block;
  padding: 0px 40px;
  font-weight: 500;
  font-size: 12px;
}

/* header style end
	============================================================================================ */
@media (max-width: 1619px) {
  /* Main Menu Area css
  ============================================================================================ */
  .header_area .navbar .search {
    margin-left: 40px;
  }
  /* End Main Menu Area css
  ============================================================================================ */
}
@media (max-width: 1199px) {
  /* Main Menu Area css
  ============================================================================================ */
  .header_area .navbar .nav .nav-item {
    margin-right: 28px;
  }
  /* End Main Menu Area css
  ============================================================================================ */
  /* Home Banner Area css
  ============================================================================================ */
  .home_banner_area .banner_inner {
    padding: 100px 0px;
  }
  /* End Home Banner Area css
  ============================================================================================ */
  .header_area .navbar .tickets_btn {
    margin-left: 40px;
  }
  .home_banner_area .banner_inner .banner_content h2 br {
    display: none;
    font-size: 36px;
  }
  .home_banner_area .banner_inner .banner_content h2 {
    font-size: 36px;
    line-height: 45px;
  }
}
@media (max-width: 991px) {
  /* Main Menu Area css
  ============================================================================================ */
  .navbar-toggler {
    border: none;
    border-radius: 0px;
    padding: 0px;
    cursor: pointer;
    margin-top: 27px;
    margin-bottom: 23px;
  }
  .header_area .navbar {
    background: #412fb3;
  }
  .navbar-toggler[aria-expanded=false] span:nth-child(2) {
    opacity: 1;
  }
  .navbar-toggler[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggler[aria-expanded=true] span:first-child {
    transform: rotate(-45deg);
    position: relative;
    top: 7.5px;
  }
  .navbar-toggler[aria-expanded=true] span:last-child {
    transform: rotate(45deg);
    bottom: 6px;
    position: relative;
  }
  .navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: auto;
    margin-bottom: 4px;
    transition: all 400ms linear;
    cursor: pointer;
  }
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .nav {
    padding: 0px 0px;
  }
  .header_area + section, .header_area + row, .header_area + div {
    margin-top: 117px;
  }
  .header_top .nav {
    padding: 0px;
  }
  .header_area .navbar .nav .nav-item .nav-link {
    line-height: 30px;
    margin-right: 0px;
    display: block;
    border-bottom: 1px solid rgba(237, 237, 237, 0.2);
    border-radius: 0px;
  }
  .header_area .navbar .search {
    margin-left: 0px;
  }
  .header_area .navbar-collapse {
    max-height: 340px;
    overflow-y: scroll;
  }
  .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
    padding: 0px 15px;
  }
  .header_area .navbar .nav .nav-item {
    margin-right: 0px;
  }
  .header_area + section, .header_area + row, .header_area + div {
    margin-top: 41px;
  }
  .home_banner_area .banner_inner .banner_content .banner_map_img {
    display: none;
  }
  .header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 40px;
  }
  .header_area.white_menu.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 40px;
  }
  .header_area.white_menu .navbar .nav .nav-item .nav-link {
    color: #222;
  }
  /* End Main Menu Area css
  ============================================================================================ */

  /* End Blog page Area css
  ============================================================================================ */
  /* Contact Page Area css
  ============================================================================================ */
  .contact_info {
    margin-bottom: 50px;
  }
  /* End Contact page Area css
  ============================================================================================ */
  .home_banner_area .donation_inner {
    margin-bottom: -30px;
  }
  .home_banner_area .dontation_item {
    max-width: 350px;
    margin: auto;
  }
  /* Footer Area css
  ============================================================================================ */
  .footer_area .col-sm-6 {
    margin-bottom: 30px;
  }
  .footer_area .footer_inner {
    margin-bottom: -30px;
  }
  .news_widget {
    padding-left: 0px;
  }
  /* End End Footer Area css
  ============================================================================================ */
  .home_banner_area .banner_inner .home_left_img {
    display: none;
  }
  .header_area .navbar .tickets_btn {
    display: none;
  }
  .home_banner_area .banner_inner {
    padding: 70px 0px 100px 0px;
  }
  .left_side_text {
    margin-bottom: 50px;
  }
  .price_item {
    max-width: 360px;
    margin: 0px auto 30px;
  }
  .price_inner {
    margin-bottom: -30px;
  }
}
@media (max-width: 767px) {
  .home_banner_area {
    min-height: 500px;
  }
  .home_banner_area .banner_inner {
    min-height: 500px;
  }
  .home_banner_area .banner_inner .banner_content {
    margin-top: 0px;
  }
  
  .home_banner_area .banner_inner .banner_content h3 {
    font-size: 30px;
  }
  .home_banner_area .banner_inner .banner_content p br {
    display: none;
  }
  .home_banner_area .banner_inner .banner_content h3 span {
    line-height: 45px;
    padding-bottom: 0px;
    padding-top: 0px;
  }
  /* Footer Area css
  ============================================================================================ */
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .footer-social {
    text-align: center;
    margin-top: 15px;
  }
  /* End End Footer Area css
  ============================================================================================ */
  .made_life_inner .nav.nav-tabs li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 15px;
  }
  .made_life_inner .nav.nav-tabs {
    margin-bottom: -15px;
  }
  .made_life_area.made_white .left_side_text {
    margin-bottom: 0px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .top_menu {
    display: none;
  }
  .header_area + section, .header_area + row, .header_area + div {
    margin-top: 51px;
  }
  /* Home Banner Area css
  ============================================================================================ */
  .home_banner_area .banner_inner .banner_content h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .home_banner_area {
    min-height: 450px;
  }
  .home_banner_area .banner_inner {
    min-height: 450px;
  }
  .blog_banner .banner_inner .blog_b_text {
    margin-top: 0px;
  }
  .home_banner_area .banner_inner .banner_content img {
    display: none;
  }
  .home_banner_area .banner_inner .banner_content h5 {
    margin-top: 0px;
  }
  /* End Home Banner Area css
  ============================================================================================ */
  .p_120 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .main_title h2 {
    font-size: 25px;
  }
  /* Elements Area css
  ============================================================================================ */
  .sample-text-area {
    padding: 70px 0 70px 0;
  }
  .generic-blockquote {
    padding: 30px 15px 30px 30px;
  }
  /* End Elements Area css
  ============================================================================================ */

  /* Footer Area css
  ============================================================================================ */
  .footer-area {
    padding: 70px 0px;
  }
  /* End End Footer Area css
  ============================================================================================ */
  .pad_top {
    padding-top: 70px;
  }
  .pad_btm {
    padding-bottom: 70px;
  }
}
@media (max-width: 480px) {
  /* Main Menu Area css
  ============================================================================================ */
  .header_area .navbar-collapse {
    max-height: 250px;
  }
  /* End Main Menu Area css
  ============================================================================================ */
  /* Home Banner Area css
  ============================================================================================ */
  .home_banner_area .banner_inner .banner_content {
    padding: 30px 15px;
    margin-top: 0px;
  }
  .banner_content .white_btn {
    display: block;
  }
  .home_banner_area .banner_inner .banner_content h3 {
    font-size: 24px;
  }
  /* End Home Banner Area css
  ============================================================================================ */
  .banner_area .banner_inner .banner_content h2 {
    font-size: 32px;
  }
  /* Blog Page Area css
  ============================================================================================ */
  .comments-area .thumb {
    margin-right: 10px;
  }
  /* End Blog Page Area css
  ============================================================================================ */
  .testi_item .media .d-flex {
    padding-right: 0px;
  }
  .testi_item .media .d-flex img {
    width: auto;
    margin-bottom: 15px;
  }
  .testi_item .media {
    display: block;
  }
  .banner_btn {
    margin-bottom: 20px;
  }
}
/* banner section start
	============================================================================================ */
.hero-banner {
  position: relative;
  background: #22195b;
  background-size: cover;
  padding: 90px 0 60px 0;
  z-index: 1;
}
@media (min-width: 600px) {
  .hero-banner {
    padding: 150px 0 120px 0;
  }
}
@media (min-width: 991px) {
  .hero-banner {
    padding: 175px 0 160px 0;
  }
}
@media (min-width: 1200px) {
  .hero-banner {
    padding: 265px 0 275px 0;
  }
}
.hero-banner__img {
  position: relative;
}
@media (min-width: 1200px) {
  .hero-banner__img img {
    position: absolute;
    top: 0;
    left: -110px;
    animation: float 4s ease-in-out infinite, glow 3s ease-in-out infinite, rotate 6s ease-in-out infinite;
  }
}
.hero-banner__content h1 {
  color: #fff;
  margin-bottom: 22px;
}
.hero-banner__content p {
  color: #fff;
  margin-bottom: 45px;
}
.hero-banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: url(../img/banner/banner-bg.png) left center no-repeat;
  background-size: cover;
  z-index: -1;
}
.hero-banner--sm {
  padding: 0;
  height: 300px;
}
.hero-banner--sm::after {
  height: 100%;
}
@media (min-width: 1000px) {
  .hero-banner--sm {
    height: 500px;
  }
}
.hero-banner--sm__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 600px) {
  .hero-banner--sm__content {
    margin-top: 40px;
  }
}
.hero-banner--sm__content > * {
  color: #fff;
}
.hero-banner--sm__content h3 {
  font-size: 27px;
  margin-bottom: 0;
}
.hero-banner--sm__content h1 {
  margin-bottom: 10px;
}
.hero-banner--sm__content h4 {
  font-size: 18px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px #00f0ff);
  }
  50% {
    filter: drop-shadow(0 0 20px #00f0ff);
  }
}
@keyframes rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(1deg);
  }
}
/* banner section end
  ============================================================================================ */
/* breadcrumb section start
  ============================================================================================ */
.banner-breadcrumb {
  display: inline-block;
}
.banner-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
}
.banner-breadcrumb .breadcrumb-item {
  padding: 0.1rem;
}
.banner-breadcrumb .breadcrumb-item a {
  text-transform: capitalize;
  color: #fff;
}
.banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  padding-left: 0.2rem;
  padding-right: 0.4rem;
}
.banner-breadcrumb .breadcrumb-item.active {
  color: #fff;
}

/* breadcrumb section end
  ============================================================================================ */
/* section intro start
	============================================================================================ */
.section-intro {
  max-width: 630px;
  margin-right: auto;
  margin-left: auto;
}
.section-intro__title {
  font-weight: 700;
  color: #3a414e;
  margin-bottom: 10px;
}
.section-intro__subtitle {
  font-size: 18px;
  color: #797979;
  margin-bottom: 0;
}

/* section intro end
	============================================================================================ */
.card-feature {
  padding: 30px 35px;
  border: 0;
  border-radius: 0;
  background: #faf9ff;
  transition: all 0.3s ease 0s;
}
.card-feature__icon {
  margin-bottom: 12px;
}
.card-feature__icon i, .card-feature__icon span {
  font-size: 30px;
  color: #21146a;
}
.card-feature__title {
  font-size: 22px;
  font-weight: 600;
}
.card-feature__subtitle {
  margin-bottom: 0;
}
.card-feature:hover {
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(33, 20, 106, 0.1);
}

.about__content h2 {
  margin-bottom: 20px;
}
.about__content p {
  margin-bottom: 38px;
}

.offer-single {
  margin-bottom: 30px;
}
@media (min-width: 991px) {
  .offer-single {
    margin-bottom: 50px;
  }
}
.card.offer-single__content {
  padding: 30px 20px;
  border: 1px solid #cecece;
  border-radius: 12px;
  background-color: #cecece;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.card.offer-single__content:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.12);
}
.offer-single__content h4 {
  font-size: 22px;
  font-weight: 600;
}
.offer-single__content p {
  margin-bottom: 0;
}

.offer-single__icon {
  display: inline-block;
  margin-bottom: 15px;
}
.offer-single__icon i, .offer-single__icon span {
  font-size: 30px;
  color: #21146a;
}
@media (min-width: 991px) {
  .offer-single__img {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 991px) and (min-width: 1200px) {
  .offer-single__img {
    transform: translateY(0);
    top: 50px;
    left: 100px;
  }
}
@media (min-width: 991px) {
  .offer-single-wrapper .offer-single:nth-child(even) {
    position: relative;
    top: 40px;
  }
}

@media (min-width: 1200px) {
  .solution__img {
    position: relative;
    left: -60px;
  }
}
@media (min-width: 1200px) {
  .solution__content {
    padding-left: 30px;
    padding-right: 45px;
  }
}
.solution__content h2 {
  margin-bottom: 20px;
}
.solution__content p {
  margin-bottom: 30px;
}

.card-pricing {
  background: #faf9ff;
  border-radius: 3px;
  border: 0;
  transition: all 0.3s ease 0s;
}
.card-pricing:hover {
  background: #fff;
  box-shadow: 0px 20px 25.5px 4.5px rgba(33, 20, 106, 0.1);
}
.card-pricing:hover .button {
  background: #21146a;
  color: #fff;
}
.card-pricing__header {
  border-bottom: 1px solid #ebebeb;
  padding: 40px 7px;
}
.card-pricing__header h4 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 5px;
}
.card-pricing__header p {
  margin-bottom: 27px;
}
.card-pricing__price {
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 991px) {
  .card-pricing__price {
    font-size: 60px;
  }
}
.card-pricing__price span {
  font-size: 40px;
  vertical-align: middle;
  position: relative;
  bottom: 5px;
}
.card-pricing__list {
  padding: 30px 8px 25px 8px;
  border-bottom: 1px solid #ebebeb;
}
.card-pricing__list li {
  margin-bottom: 12px;
}
.card-pricing__list li:last-child {
  margin-bottom: 0;
}
.card-pricing__list li i, .card-pricing__list li span {
  font-size: 13px;
  margin-right: 10px;
}
.card-pricing__list li.unvalid i, .card-pricing__list li.unvalid span {
  color: #f81c1c;
  font-size: 12px;
}
.card-pricing__footer {
  padding: 45px 0;
}
.cloud-build-section {
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
  padding: 80px 0;
}

.button-primary {
  background-color: #0056b3;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.button-primary:hover {
  background-color: #003f88;
  color: #fff;
}


/* Gaya ikon dan bullet list */
ul.list-unstyled li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
}

ul.list-unstyled li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 20px;
  color: #007bff;
  width: 30px;
  text-align: center;
}

ul.list-unstyled li strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16.5px;
}

ul.list-unstyled li p {
  margin: 0;
  color: #333;
}


/* Gaya gambar ilustrasi */
img.rounded.shadow {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Tombol ajakan konsultasi */
.button-header.bg {
  background-color: #007bff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.button-header.bg:hover {
  background-color: #0056b3;
  color: #fff;
}

/* Our Major Cause Area css
============================================================================================ */
.our_major_cause .owl-item {
  padding: 0 10px;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .our_major_cause .owl-item {
    margin-bottom: 0;
  }
}
.our_major_cause .card {
  border: 0;
  box-shadow: 0 3px 14px 0px rgba(221, 221, 221, 0.85);
  margin-bottom: 30px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .our_major_cause .card .card-body {
    padding: 5px;
  }
}
.our_major_cause .card figure {
  overflow: hidden;
  margin: 0;
}
.our_major_cause .card figure img {
  transition: all 0.3s ease 0s;
}
.our_major_cause .card .card_inner_body {
  padding: 20px 12px 30px;
}
.our_major_cause .card .card_inner_body .card-body-top {
  margin-bottom: 30px;
}
.our_major_cause .card .card-text {
  margin-bottom: 0;
}
.our_major_cause .card .progress {
  overflow: visible;
  height: 4px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  top: -4px;
}
.our_major_cause .card .progress .progress-bar span {
  position: absolute;
  bottom: -49px;
  right: 11px;
  font-size: 14px;
}
.our_major_cause .card:hover img {
  transform: scale(1.2);
}
.our_major_cause .card:hover .main_btn2 {
  color: #fff;
}

.section-about-highlight {
  background: linear-gradient(135deg, #007bff, #6f42c1); /* biru ke ungu */
  color: #fff; /* teks default jadi putih */
}

.section-about-highlight h2 {
  color: #fff;
}

.section-about-highlight p {
  color: #eaeaea;
}

.section-about-highlight .button.button-light {
  background-color: #fff;
  color: #007bff;
  border: none;
}

.section-about-highlight .button.button-light:hover {
  background-color: #eaeaea;
  color: #0056b3;
}


/* Clients Logo Area css
============================================================================================ */
.clients_logo_area .clients_slider .item {
  text-align: center;
}
.clients_logo_area .clients_slider .item img {
  width: auto;
  text-align: center;
  display: block;
  margin: auto;
  line-height: 70px;
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.2;
  transition: all 0.3s ease 0s;
}
.clients_logo_area .clients_slider .item:hover img {
  opacity: 1;
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  filter: grayscale(0%);
}
/* halaman teknologi */
.ice-dci-highlight {
  position: relative;
  background: url('img/technology/dci.jpg') center/cover no-repeat;
  padding: 5rem 1rem;
  z-index: 1;
  color: #fff !important;
}

.ice-dci-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.ice-dci-highlight .container {
  position: relative;
  z-index: 2;
}

.ice-dci-title {
  font-size: 2.5rem; 
  font-weight: 800;  
  color: #fff !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.ice-dci-subtitle {
  font-size: 1.25rem; 
  font-weight: 500;
  color: #fff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* wdm css */
.ice-wdm-grid .card-gradient {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  z-index: 1;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.ice-wdm-grid .card-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #1a73e8, #2dd4bf); 
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.ice-wdm-grid .card-gradient:hover {
  transform: translateY(-4px);
}
/* encryption lvl 1 */
.ice-encryption-section {
  background: linear-gradient(135deg, #f8fbff, #eef3fc);
  border-top: 4px solid #1a73e8;
}

.ice-encryption-section h2 {
  color: #1a2b6d;
  font-size: 2rem;
}

.ice-encryption-section ul li::before {
  content: "•";
  color: #1a73e8;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.ice-encryption-section img {
  border: 1px solid #dee2e6;
}
/* qkd css */
.ice-qkd-section {
  background: linear-gradient(135deg, #f9fbff, #eef3fc);
}

.ice-qkd-section h2 {
  color: #1a2b6d;
  font-size: 2rem;
}

.ice-qkd-section img {
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
}
.ice-qkd-section img,
.ice-encryption-section img {
  transition: transform 0.3s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-radius: 0.75rem;
  border: 2px solid transparent;
}

.ice-qkd-section img:hover,
.ice-encryption-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #1ae3ff, 0 0 30px #1ae3ff;
  border-color: #1ae3ff;
}

/* Background gambar berbeda */
.offer-single__content {
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 16px;
  color: #fff;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 340px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.offer-single__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 0;
  border-radius: inherit;
}

/* Pastikan konten di atas overlay */
.offer-single__content * {
  position: relative;
  z-index: 1;
  color: #fff !important;
}

/* Icon styling */
.offer-single__icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: inline-block;
  color: #fff;
}

.bg-iaas {
  background-image: url('../img/bg-iaas.jpg'); 
}

.bg-paas {
  background-image: url('../img/bg-paas.png'); 
}

.bg-saas {
  background-image: url('../img/bg-saas.jpg'); 
}
/* Judul keuntungan */
h3.mb-4 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

/* List keuntungan */
ul.list-unstyled {
  padding-left: 0;
  list-style: none;
  font-size: 1.1rem;
  color: #444;
}

ul.list-unstyled li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

/* Icon check list */
ul.list-unstyled li i.ti-check {
  color: #28a745;
  font-size: 1.3rem;
  margin-right: 10px;
}

/* OpenStack Section*/
.text-center img.img-fluid.rounded.shadow {
  max-width: 500px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.15);
  border-radius: 12px;
}

/* Caption gambar */
.text-center p.mt-3.text-muted {
  font-size: 0.9rem;
  color: #888;
  margin-top: 10px;
}
/* Section styling */
.section-margin {
  padding: 60px 20px;
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Title */
.section-margin h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: block;
}

.section-margin h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #007bff;
  margin: 10px auto 0;
}

/* Paragraph */
.section-margin p {
  font-size: 1.05rem;
  color: #555;
}

/* Image styling */
.arch-diagram {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.arch-diagram:hover {
  transform: scale(1.02);
}

/* List styling */
.section-margin h5 {
  margin-top: 25px;
  font-size: 1.2rem;
  color: #007bff;
}

.section-margin ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.section-margin ul li {
  margin-bottom: 10px;
  color: #343a40;
  line-height: 1.6;
}

/* Links */
.section-margin a {
  color: #007bff;
  text-decoration: none;
}

.section-margin a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-margin h2 {
    font-size: 2rem;
  }

  .section-margin p,
  .section-margin ul li {
    font-size: 0.95rem;
  }
}

/* End Clients Logo Area css
============================================================================================ */
/* Clients Says Area css
============================================================================================ */

/* End Clients Says Area css
============================================================================================ */
/* Start About Us css
=========================================================================================== */
.about_us .about_img:after {
  content: "";
  position: absolute;
  top: 30px;
  bottom: -5px;
  left: -10px;
  right: -10px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .about_us .about_img:after {
    background: #fff;
  }
}
.about_us .about_img img {
  position: relative;
  z-index: 2;
  box-shadow: 0px 13px 35px #c9c9c9;
}
.about_us .content_wrapper {
  padding: 25px 0;
}
.about_us .content_wrapper h1 {
  margin-bottom: 40px;
}
.about_us .content_wrapper .main_btn {
  margin-top: 50px;
}
.about_us .bottom_para {
  margin-top: 50px;
}

/* About Us css End
=========================================================================================== */

/*=================== contact banner start ====================*/
.contact-banner {
  position: relative;
}
.contact-banner h4, .contact-banner h1, .contact-banner a {
  text-transform: uppercase;
  color: #fff;
}
.contact-banner h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.contact-banner h1 {
  font-size: 37px;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .contact-banner h1 {
    font-size: 48px;
  }
}
.contact-banner-area {
  height: 280px;
  background: url("../../assets/images/contact-bg.png") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media (min-width: 991px) {
  .contact-banner-area {
    height: 450px;
  }
}
.contact-banner-area .contact-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.contact-banner-area::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 2, 11, 0.7);
  z-index: -1;
}
.contact-banner-btn {
  border: 2px solid #21146a;
  padding: 10px 45px;
}
.contact-banner-btn:hover {
  background: #21146a;
  color: #fff;
}

.contact-info__icon {
  margin-right: 20px;
}
.contact-info__icon i, .contact-info__icon span {
  color: #21146a;
  font-size: 20px;
}
.contact-info .media-body h3 {
  font-size: 16px;
  margin-bottom: 0;
}
.contact-info .media-body h3 a {
  color: #3a414e;
}
.contact-info .media-body p {
  color: #999999;
}

/*=================== contact banner end ====================*/
/*=================== contact form start ====================*/
.form-contact .form-group {
  margin-bottom: 10px;
}
.form-contact .form-control {
  border-radius: 0;
  height: 40px;
  padding-left: 18px;
  border-color: transparent;
  background: rgba(130, 139, 178, 0.1);
}
.form-contact .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-contact .form-control::-moz-placeholder {
  font-size: 14px;
  color: #999999;
}
.form-contact .form-control::placeholder {
  font-size: 14px;
  color: #999999;
}
.form-contact .different-control {
  height: 100% !important;
}

/*=================== contact form end ====================*/
/* cta */
.cta-area {
  background: linear-gradient(135deg, #4e2dc9, #000428); 
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-area h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-area p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-area a.btn {
  font-size: 1rem;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #004e92;
  border: 2px solid transparent;
}

.cta-area a.btn:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
/* cta pricing */
.cloud-build-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('../img/ctabg.jpg') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  border-radius: 0 0 40px 40px;
}

.cloud-build-section .section-intro__title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cloud-build-section .section-intro__subtitle {
  font-size: 18px;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.8;
}

.cloud-build-section p {
  font-size: 16px;
  color: #000000;
  margin-top: 10px;
}

.cloud-build-section .button-primary {
  background-color: #0059ff;
  border-color: #0059ff;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cloud-build-section .button-primary:hover {
  background-color: #0041cc;
  border-color: #0041cc;
  color: #fff;
}
.step-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex: 0 0 23%;   /* <-- penting agar 4 box muat segaris */
  max-width: 23%;
  margin: 1%;
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.2);
  background-color: #f8fbff;
}

.step-box i {
  font-size: 42px;
  margin-bottom: 20px;
  color: #007bff;
  transition: color 0.3s ease;
}

.step-box h5 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.step-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Row yang fleksibel dan rapi */
.row.gap-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsif untuk tablet */
@media (max-width: 992px) {
  .step-box {
    flex: 0 0 45%;
    max-width: 45%;
    margin: 2.5%;
  }
}

/* Responsif untuk mobile */
@media (max-width: 576px) {
  .step-box {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
}
/* network  */
.ice-network-section {
  background: #f9fbff;
  border-top: 1px solid #e4eaf0;
}

.network-image-wrapper {
  text-align: center;
}

.network-image {
  border: 1px solid #dee2e6;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.network-image:hover {
  transform: scale(1.02);
}

.network-content {
  font-size: 20px;
  color: #4f5f70;
}

.network-title {
  font-weight: 600;
  color: #164e96;
}

.network-description {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.network-feature-list {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
}

.network-feature-list li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
  font-size: large;
}

.network-feature-list li::before {
  content: "✔";
  color: #1e90ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* spek di storage */
/* Custom Ice Cloud Storage Table Style */
.storage-comparison-section {
  background-color: #f8fbff; /* warna dasar cerah */
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0,123,255,0.05) 0px,
    rgba(0,123,255,0.05) 10px,
    transparent 10px,
    transparent 20px
  );
}
.storage-comparison-section h2 {
  color: #003366;
}

.ice-storage-table {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.ice-storage-table thead {
  background: linear-gradient(90deg, #007bff, #00c2ff);
  color: #fff;
  text-align: center;
}

.ice-storage-table th,
.ice-storage-table td {
  padding: 12px 15px;
  vertical-align: middle;
}

.ice-storage-table tbody tr:nth-child(odd) {
  background-color: #f9fbfd;
}

.ice-storage-table tbody tr:hover {
  background-color: #eef6fb;
}

.ice-storage-table td strong {
  color: #007bff;
}

/* keamanan storage */
.security-feature-section {
  background-color: #f8fbff; /* background terang */
}

.security-feature-card {
  background-color: #ffffff;
  border: 1px solid #e3e9f1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.security-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.security-feature-section h2 {
  color: #003366; /* biru gelap supaya kontras */
}

/* ice cloud end-to-end */
.section-gradient {
  background: linear-gradient(to right top, #6a11cb, #2575fc);
  color: #fff;
}
.icecloud-architecture .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

.icecloud-architecture h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.icecloud-architecture p, .icecloud-architecture li {
  font-size: 0.95rem;
  color: #f1f1f1;
}

.styled-list {
  padding-left: 20px;
}

.styled-list li::marker {
  content: "\2713  ";
  color: #00ffb3;
}

.icecloud-architecture ol {
  text-align: left;
  display: inline-block;
  padding-left: 1rem;
  color: #fff;
}

.icecloud-architecture .gambar-arsitektur {
  max-width: 65%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.icecloud-architecture .gambar-arsitektur:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px #ffffff; 
}



/* accordion faq */
.custom-accordion .accordion-item {
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-title {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  background-color: #f7faff;
  color: #003366;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-title:hover {
  background-color: #e9f2ff;
}

.accordion-content {
  display: none;
  padding: 15px 20px;
  background-color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  border-top: 1px solid #e1e8f0;
}

.accordion-item.active .accordion-content {
  display: block;
}
/* bare metal to openstack */
.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.custom-list li i {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 1rem;
  line-height: 1.5;
}

.custom-list li div {
  flex: 1;
}

/* Tabel responsive dan tampilan sel */
.table-bordered {
  border: 1px solid #dee2e6;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.table thead {
  background-color: #0d6efd; /* Bootstrap Primary */
  color: #fff;
}

.table th,
.table td {
  vertical-align: middle;
  padding: 1rem;
  font-size: 1rem;
  border-color: #dee2e6;
}

.table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.table td:first-child {
  font-weight: 600;
  color: #333;
  text-align: left;
}

/* Emoji-style check/cross */
.table td {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .table th, .table td {
    font-size: 0.95rem;
    padding: 0.75rem;
  }
}

/* halaman Service */
.cta-network-image {
  padding: 100px 0;
  background-image: url('../img/services/cta-bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  color: #ffffff;
  z-index: 1;
}

.cta-network-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}

.cta-network-image h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00ffff;
}

.cta-network-image p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* services */
.ice-layout-grey {
  background-color: #f8f9fa;
}

.ice-layout-white {
  background-color: #ffffff;
}

.ice-layout-image {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.ice-title {
  font-size: 2rem;
  font-weight: 700;
}

.ice-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
}

.ice-feature-box {
  background: linear-gradient(135deg, #f5f7fa, #e4ecf4);
  border: none;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.ice-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ice-feature-card {
  background: #f1f3f5;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  transition: 0.3s;
}

.ice-feature-card:hover {
  background-color: #e9ecef;
  transform: scale(1.03);
}

.ice-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.ice-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.ice-list-dark {
  list-style: disc;
  padding-left: 20px;
  color: #333;
}

.ice-list-dark li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.ice-section-white {
  background-color: #f9f9f9;
}

/* storage page */
.what-we-do-section-gradient {
  background: linear-gradient(135deg, #6a11cb, #ffffff, #2575fc);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: #fff;
}

.feature-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2b2b2b;
  margin-bottom: 10px;
}

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

.icon img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* cta bg */
.cta-section {
  background: repeating-linear-gradient(
    135deg,              
    #e6f0fa,              
    #e6f0fa 10px,
    #f0f4ff 10px,
    #f0f4ff 20px
  );
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}


.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.cta-section h4 {
  font-size: 2rem;
  color: #1f2f90;
  font-weight: 700;
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
}

.cta-section p {
  color: #5f6d89;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  z-index: 1;
  position: relative;
}

.cta-section .btn-primary {
  background: linear-gradient(90deg, #1a73e8, #2a8cff);
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(26, 115, 232, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary:hover {
  background: linear-gradient(90deg, #1558b0, #1a73e8);
  box-shadow: 0 10px 25px rgba(26, 115, 232, 0.4);
  transform: translateY(-2px);
}
/* transciver */
.transceiver-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.transceiver-section h3 {
  font-size: 28px;
  font-weight: 600;
  color: #007bff;
}

.transceiver-section p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.7;
}

.transceiver-section ul {
  padding-left: 1rem;
  margin-top: 1rem;
}

.transceiver-section ul li {
  margin-bottom: 10px;
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.transceiver-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.transceiver-img {
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}


/* ===== Ice Cloud Benefit List ===== */
.ice-storage-benefit-list {
  list-style: none;
  padding-left: 0;
}

.ice-storage-benefit-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #2e2e2e;
  line-height: 1.6;
}

.ice-storage-benefit-list li::before {
  content: "🌐";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.1rem;
  color: #00aaff;
}

/* Section Margin & Padding */
.section-margin {
  padding: 80px 0;
}

/* Judul Section */
.section-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
}

.section-intro p {
  font-size: 16px;
  color: #666;
  margin-top: 15px;
}

/* Card Style */
.card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 25px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0c3c78;
  margin-bottom: 15px;
}

/* Button Style */
.btn-sm {
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 20px;
  transition: 0.3s;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  background-color: #084298;
  border-color: #084298;
}

.btn-outline-primary {
  border-color: #0d6efd;
  color: #0d6efd;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* block storage */
/* === GRADIENT STYLING FOR STORAGE SECTIONS === */

/* Section Title */
.section-intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #003366;
  position: relative;
  margin-bottom: 20px;
}

.section-intro h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  margin: 10px auto 0;
  border-radius: 4px;
}

.section-intro p {
  font-size: 1.1rem;
  color: #444;
  max-width: 850px;
  margin: auto;
}

/* Image styling */
.img-fluid.rounded.shadow {
  border: 2px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
  transition: transform 0.3s ease;
}
.img-fluid.rounded.shadow:hover {
  transform: scale(1.02);
}

/* Feature List */
ul.list-unstyled li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #222;
  padding-left: 30px;
  position: relative;
}

ul.list-unstyled li::before {
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

/* Gradient Button */
.btn-outline-primary.btn-sm {
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: background 0.3s ease;
}

.btn-outline-primary.btn-sm:hover {
  background: linear-gradient(135deg, #0056b3, #0096c7);
  color: #fff;
}

/* Optional card-style container */
.card-style {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
/* list block storage */
.block-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.block-feature-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
}

.block-feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff;
  font-weight: bold;
  font-size: 1rem;
}

/* Supaya judul fitur lebih menonjol dan sejajar */
.block-feature-list .feature-title {
  display: inline-block;
  font-weight: 600;
  min-width: 260px;
  color: #00274d;
}

/* NVMe */
.architecture-box {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  transition: box-shadow 0.3s ease;
}

.architecture-box:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
}

.architecture-box h4 {
  font-size: 22px;
  font-weight: 700;
}

.architecture-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
}

@media (max-width: 768px) {
  .architecture-box {
    padding: 1.5rem;
  }
  .architecture-box h4 {
    text-align: center;
  }
}


/* object storage */
/* ==== OBJECT STORAGE FEATURE LIST ==== */

.object-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.object-feature-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #2b2b2b;
  line-height: 1.7;
}

.object-feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #28a745;
}
.ice-compatibility-neon {
  position: relative;
  background: linear-gradient(135deg, #f0f9ff, #e8f0fe);
  overflow: hidden;
  z-index: 1;
}
/* Neon Line at Top */
.ice-compatibility-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00f0ff, #1ae3ff, #00f0ff, transparent);
  animation: neonLine 4s linear infinite;
  z-index: 2;
}

/* Optional: glowing inner shine (soft gloss) */
.ice-compatibility-neon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Keyframe for moving line */
@keyframes neonLine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Glowing gradient border for each card */
.compatibility-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(80, 112, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 50, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  text-align: center;
}

.compatibility-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 50, 255, 0.15);
}

/* Icon */
.compatibility-box .icon {
  font-size: 2.2rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

/* Glossy light animation */
@keyframes shineMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50%, 50%);
  }
}

/* Judul fitur */
.object-feature-list .feature-title {
  display: inline-block;
  font-weight: 600;
  min-width: 260px;
  color: #004085;
}
/* ==== OBJECT STORAGE USE CASE LIST ==== */

.object-usecase-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 40px;
}

.object-usecase-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.object-usecase-list li::before {
  content: "🗂️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}
/* file storage */
/* ==== FILE STORAGE FEATURE LIST ==== */

.file-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.file-feature-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #2c2c2c;
  line-height: 1.7;
}

.file-feature-list li::before {
  content: "📁";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  color: #007bff;
}

.file-feature-list .feature-title {
  display: inline-block;
  font-weight: 600;
  min-width: 250px;
  color: #003366;
}

/* ==== FILE STORAGE USE CASE LIST ==== */

.file-usecase-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 40px;
}

.file-usecase-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.file-usecase-list li::before {
  content: "📝";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}
/* sds storage */
/* ==== SDS FEATURE LIST ==== */

.sds-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.sds-feature-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #2b2b2b;
  line-height: 1.7;
}

.sds-feature-list li::before {
  content: "⚙️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  color: #0056b3;
}

.sds-feature-list .feature-title {
  display: inline-block;
  font-weight: 600;
  min-width: 260px;
  color: #002952;
}

/* ==== SDS USE CASE LIST ==== */

.sds-usecase-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 40px;
}

.sds-usecase-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.sds-usecase-list li::before {
  content: "🔧";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05rem;
  color: #007bff;
}
.bg-gradient-dpu {
  background: linear-gradient(135deg, #d6ccff 0%, #ffffff 50%, #ccf2ff 100%);
  padding: 80px 0;
}

.section-title {
  font-weight: 700;
  font-size: 32px;
}

.fs-5 {
  font-size: 1.1rem;
}


/*=================== custom button rule start ====================*/
.button {
  display: inline-block;
  border: 1px solid transparent;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 30px;
  background-color: #fff;
  color: #21146a;
  color: #3a414e;
  transition: all 0.4s ease;
}
.button i, .button span {
  margin-left: 5px;
}
@media (min-width: 900px) {
  .button {
    padding: 12px 45px;
  }
}
.button:hover {
  background-color: transparent;
  border-color: #21146a;
  color: #000022;
}
.button-header {
  padding: 12px 40px;
}
.button.bg:hover {
  border-color: #fff;
  color: #fff;
}
.button-light {
  background-color: transparent;
  border-color: #21146a;
}
.button-light:hover {
  background-color: #21146a;
  color: #fff;
}
.button-blog {
  border: 1px solid #21146a;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: #222222;
  padding: 7px 30px;
}
.button-blog:hover {
  background-color: #21146a;
  color: #fff;
}
.button-postComment {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #21146a;
  color: #fff;
  border-radius: 4px;
  padding: 14px 45px;
}
.button-contactForm {
  font-size: 15px;
  background-color: #21146a;
  color: #fff;
  padding: 12px 36px;
}
.button-contactForm:hover {
  border-color: #21146a;
  color: #21146a;
}

/*=================== custom button rule end ====================*/
/* footer style start
	============================================================================================ */
.footer-area {
  padding: 120px 0px 120px;
  background: #0e1424;
}
@media (max-width: 991px) {
  .footer-area {
    padding: 60px 0px;
  }
}
@media (max-width: 991px) {
  .footer-area .single-footer-widget {
    margin-bottom: 30px;
  }
}
.footer-area .single-footer-widget p {
  color: #7b838a;
}
.footer-area .single-footer-widget h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .footer-area .single-footer-widget h4 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .footer-area .single-footer-widget h4 {
    margin-bottom: 15px;
  }
}
.footer-area .single-footer-widget ul li {
  margin-bottom: 10px;
}
.footer-area .single-footer-widget ul li a {
  color: #797979;
}
.footer-area .single-footer-widget .form-wrap {
  margin-top: 25px;
}
.footer-area .single-footer-widget input {
  height: 48px;
  border: none;
  width: 67% !important;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding-left: 20px;
  border-radius: 0;
  font-size: 14px;
  padding: 10px;
}
.footer-area .single-footer-widget input:focus {
  outline: none;
  box-shadow: none;
}
.footer-area .single-footer-widget input.placeholder {
  padding-left: 10px;
  color: #797979;
}
.footer-area .single-footer-widget input:-moz-placeholder {
  padding-left: 10px;
  color: #797979;
}
.footer-area .single-footer-widget input::-moz-placeholder {
  padding-left: 10px;
  color: #797979;
}
.footer-area .single-footer-widget input::-webkit-input-placeholder {
  padding-left: 10px;
  color: #797979;
}
.footer-area .single-footer-widget .click-btn {
  font-family: "Roboto", sans-serif;
  color: #3a414e;
  border-radius: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 8px 20px;
  border: 0;
  font-size: 14px;
  background: #fff;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  left: 0;
}
.footer-area .single-footer-widget .click-btn:focus {
  outline: none;
  box-shadow: none;
}
@media (max-width: 375px) {
  .footer-area .single-footer-widget .click-btn {
    margin-top: 10px;
  }
}
@media (min-width: 400px) {
  .footer-area .single-footer-widget .click-btn {
    left: -50px;
  }
}
.footer-area .footer-bottom {
  margin-top: 70px;
}
@media (max-width: 991px) {
  .footer-area .footer-bottom {
    margin-top: 20px;
  }
}
.footer-area .footer-bottom p {
  color: #797979;
}
.footer-area .footer-bottom p a {
  color: #fff;
}
.footer-area .footer-bottom .footer-social {
  text-align: center;
}
@media (max-width: 991px) {
  .footer-area .footer-bottom .footer-social {
    text-align: left;
    margin-top: 30px;
  }
}
.footer-area .footer-bottom .footer-social a {
  background: rgba(255, 255, 255, 0.15);
  margin-left: 3px;
  width: 32px;
  color: #fff;
  display: inline-grid;
  text-align: center;
  height: 32px;
  align-content: center;
}
.footer-area .footer-bottom .footer-social a:hover {
  background: #fff;
  color: #21146a;
}
.footer-area .footer-bottom .footer-social a i, .footer-area .footer-bottom .footer-social a span {
  font-size: 14px;
}

/* Marquee container */
.icecloud-marquee-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #1a237e, #0d47a1);
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

/* Inner track with animation */
.icecloud-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scrollMarquee 25s linear infinite;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  text-shadow: 0 0 6px #00e5ff, 0 0 10px rgba(0, 229, 255, 0.6);
  padding-left: 100%;
}

/* Pause when hovered */
.icecloud-marquee-wrapper:hover .icecloud-marquee-track {
  animation-play-state: paused;
}

/* Scroll animation */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive font size */
@media (max-width: 576px) {
  .icecloud-marquee-track {
    font-size: 0.85rem;
  }
}


/* footer style end
	============================================================================================ *//*# sourceMappingURL=style.css.map */