/* ===================================================
>>> TABLE OF CONTENTS:
======================================================
01. Fonts
02. General
03. Scroll top button
04. Header

=================================================== */

/* ----------------------------------------------------------------
    01. Fonts
------------------------------------------------------------------- */

/* Galano Grotesque Font */

/* Thin */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 100;
    src: local("Galano Grotesque Thin"), url("../fonts/GalanoGrotesqueThin.otf") format("opentype");
}


/* ExtraLight */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 200;
    src: local("Galano Grotesque ExtraLight"), url("../fonts/GalanoGrotesqueExtraLight.otf") format("opentype");
}

/* Light */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 300;
    src: local("Galano Grotesque Light"), url("../fonts/GalanoGrotesqueLight.otf") format("opentype");
}

/* Regular */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 400;
    src: local("Galano Grotesque Regular"), url("../fonts/GalanoGrotesqueRegular.otf") format("opentype");
}

/* Medium */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 500;
    src: local("Galano Grotesque Medium"), url("../fonts/GalanoGrotesqueMedium.otf") format("opentype");
}

/* SemiBold */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 600;
    src: local("Galano Grotesque SemiBold"), url("../fonts/GalanoGrotesqueSemiBold.otf") format("opentype");
}

/* Bold */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 700;
    src: local("Galano Grotesque Bold"), url("../fonts/GalanoGrotesqueBold.otf") format("opentype");
}

/* ExtraBold */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 800;
    src: local("Galano Grotesque ExtraBold"), url("../fonts/GalanoGrotesqueExtraBold.otf") format("opentype");
}

/* Heavy */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 900;
    src: local("Galano Grotesque Heavy"), url("../fonts/GalanoGrotesqueHeavy.otf") format("opentype");
}

/* Black */
@font-face {
    font-family: "Galano Grotesque";
    font-style: normal;
    font-weight: 1000;
    src: local("Galano Grotesque Black"), url("../fonts/GalanoGrotesqueBlack.otf") format("opentype");
}

:root {
    --fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Galano Grotesque", var(--fallback-fonts);
}

/* Colors */
:root {
    --color-primary: 57, 239, 192;
    --color-primary-dark: 15, 189, 145;
    --color-secondary: 18, 118, 140 transparent;
    --color-white: #fff;
    --font-remixicon: remixicon;
    --font-bootstrap-icons: bootstrap-icons;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-primary)) transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-primary));
}

::selection {
    background: rgb(var(--color-primary));
}

::selection {
    color: var(--color-white);
    text-shadow: none;
}

/*--------------------------------------------------------------
    02. General
--------------------------------------------------------------*/

body {
    font-family: var(--font-primary);
    font-weight: 500;
    overflow-x: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #282337;
}

p {
    color: #373737;
}

@media (min-width: 1270px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px !important;
    }
}

a {
    color: rgb(var(--color-primary));
    text-decoration: none;
}

/* a:hover {
    color: rgb(var(--color-primary-dark));
    text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.list-dot li {
    list-style: square;
    list-style-position: inside;
    font-size: 16px;
    font-weight: 400;
}

.list-dot-two{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.list-dot-two li{
    font-size: 16px;
    position: relative;
    padding-inline-start: 25px;
    width: 100%;
    font-weight: 400;
}


@media (min-width:768px) {
    .list-dot-two.two li{
        width: 48%;
    }
}

.list-dot-two li:before{
    content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  background: rgb(var(--color-primary));
  transform: rotate(45deg);
  width: 10.17px;
  height: 10.17px;
  opacity: 0.4;
}

.bg-trasparent {
    background: transparent !important;
}

.w-fit-content {
    width: fit-content;
}

input[type="checkbox"] {
    accent-color: rgb(var(--color-primary)) !important;
    height: 15px;
    width: 15px;
}

input[type="radio"] {
    accent-color: rgb(var(--color-primary)) !important;
    height: 15px;
    width: 15px;
}
.fw-600{
    font-weight: 600;
}

.w-fit-content{
    width: fit-content;
}

/* ----------------------------------------------------------------
    03. Scroll top button
------------------------------------------------------------------- */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: 15px;
    bottom: -40px;
    z-index: 99999;
    background: rgb(var(--color-primary));
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.5s;
    cursor: pointer;
    border: 0;
    outline: unset;
    box-shadow: unset;
}

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    inset-inline-start: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: rgb(var(--color-primary));
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

.bg2 {
	background-color: #dcfffb;
}

/* ----------------------------------------------------------------
    04. btns css
------------------------------------------------------------------- */
.btn-02 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.35px;
    border: 2px solid #00112C;
    padding: 12px 25px;
    display: block;
    width: fit-content;
    border-radius: 8px;
    color: #00112c;
    cursor: pointer;
}
.btn-02:hover {
	background-color: #00112c;
	color: #fff;
}
.btn-03 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.35px;
    border: 2px solid #fff;
    padding: 12px 25px;
    display: block;
    width: fit-content;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}
.btn-03:hover {
    background-color: #fff;
    color: #00112C;
}

.theme_btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.35px;
    border: 2px solid #fff;
    padding: 15px 25px;
    display: block;
    width: fit-content;
    border-radius: 8px;
    color: rgb(var(--color-primary-dark));
    transition: all .4s;
    cursor: pointer;
}
.theme_btn:hover {
    color: #00112c;
    background-color:#fff;
}

.theme_btn.two{
    border: 2px solid #00112c;
    color: rgb(var(--color-primary-dark));
    transition: all .4s;
}
.theme_btn.two:hover {
    color: #fff;
    background-color:#00112c;
}

.gap-bottom{
    margin-bottom: 30px;
}


/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
    padding: 20px;
    position: relative;
    box-shadow: 0 0 15px #40444733;
    border-radius: 8px;
    border: 1px solid #bfbfbf;
}

.sunrise-form .labels {
    font-size: 17px;
    font-weight: 600;
    position: relative;
    width: 100%;
}

.sunrise-form .smd-info {
    position: absolute;
    right: 20px;
    top: 6px;
}

.sunrise-form .smd-info .tooltip-txt {
    position: relative;
    cursor: help;
    color: rgb(var(--color-primary));
    font-weight: 500;
    font-size: 15px;
}



.sunrise-form .smd-info .tooltip-txt .tooltip-info {
    display: none;
    padding: 15px;
    z-index: 5;
    cursor: default;
    background: #272727;
    color: #ededed;
    font-size: 12px;
    line-height: 1.5;
    position: absolute;
    top: 25px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
    width: 635px;
    right: 2px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
    background: url('../images/up_arrow.png') 0 0 no-repeat;
    right: 29px;
    width: 22px;
    height: 12px;
    position: absolute;
    top: -10px;
    display: block;

}

.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
    display: block;
}

.sunrise-form .smd-info .tooltip-txt+.tooltip-txt {
    cursor: pointer;
}

@media (max-width:991px) {
    .sunrise-form .smd-info {
        display: none;
    }
}

.sunrise-form .input {
    width: 100%;
    background: #ececec;
    border: 1px solid #e9e9e9;
    padding: 15px;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
}
/* ----------------------------------------------------------------
    04. Header
------------------------------------------------------------------- */
.main-header {
    background-color: #000000;
  position: absolute;
  width: 100%;
  z-index: 5;
  padding: 18px 0px;
}

.header-sticky {
	position: fixed;
	z-index: 14;
	width: 100%;
	box-shadow: rgba(50, 50, 50, 0.2) 0px 0px 20px 0px;
	transition: transform 100ms ease-in-out, background-color 200ms ease-in-out;
	background-color: #002143;
}

.main-header.light{
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}

.main-header.light.header-sticky{
    background: #fff;
}

/*.main-header.dropdown-open {
    background-color: #002143;
}*/

.main-header .nabbar-nav {
    margin-bottom: 0;
    height: 100%;
}

.main-header .nabbar-nav>.container-lg {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand {
    display: inline-block;
}

.main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand img {
    max-height: 30px;
}


/* Desktop Navigation */
@media (min-width: 992px) {

    .main-header>.nabbar-nav>.container-lg>.logo-and-navbar>.nav-brand {
        margin-inline-end: 32px;
    }

    .main-header .nabbar-nav .mainmenu {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        gap: 32px;
    }

    .main-header .nabbar-nav .mainmenu > li {
        position: relative;
    }

    .main-header .nabbar-nav .mainmenu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        font-family: var(--font-primary);
        font-size: 15px;
        white-space: nowrap;
        transition: 0.3s;
        color: rgb(255, 255, 255);
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .main-header.light .nabbar-nav .mainmenu > li > a{
        color: rgb(0, 0, 0);
    }


    .main-header .nabbar-nav .mainmenu li.has-droupdown>a>.dropdown-indicator {
        font-size: 12px;
        line-height: 0;
        margin-inline-start: 5px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened>a {
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened>a>.dropdown-indicator {
        transform: rotate(-180deg);
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu {
        position: absolute;
        top: 44px;
        display: block;
        opacity: 0;
        visibility: hidden;
        z-index: 9;
        background: #fff;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.one{
        padding: 15px;
        min-width: 230px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.visible {
        visibility: visible;
        opacity: 1;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two{
        display: flex;
        flex-wrap: nowrap;
        gap: 40px;
        padding: 25px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two > li{
        display: block;
    }


    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two > li > ul > li.heading-dropdown{
        font-size: 16px;
        text-decoration: underline;
        color: #000;
        margin-bottom: 10px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two > li > ul > li > a{
        display: block;
    white-space: nowrap;
    color: #5b5b5b;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s;
    line-height: 34px;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.two > li > ul > li > a:hover{
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.one > li > a{
        display: block;
    white-space: nowrap;
    color: #5b5b5b;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
    line-height: 2;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.one > li > a:hover{
        color: rgb(var(--color-primary));
    }


    .main-header .navbar-button,
    .main-header .nabbar-nav .mobile-menu-header {
        display: none;
    } 

}

.main-header .nabbar-nav .nav-right-side-bar .login-btn-nav {
	padding: 7px 15px;
	display: block;
	border-radius: 5px;
	background: rgb(0, 33, 67);
	color: #fff;
	border: 2px solid #fff;
}
.main-header .nabbar-nav .nav-right-side-bar .login-btn-nav:hover {
	padding: 7px 15px;
	display: block;
	border-radius: 5px;
	background: rgb(255, 255, 255);
	color: #002143;
	border: 2px solid #fff;
}


.main-header.light .nabbar-nav .nav-right-side-bar .login-btn-nav{
    border: 2px solid rgb(0, 33, 67);
}


/* Mobile Navigation */

@media (max-width: 991px) {
    .main-header .navbar-button {
        height: auto;
        width: auto;
        text-align: center;
        outline: none;
        border: 0 none;
        padding: 0;
        background: transparent;
        display: block;
        font-size: 25px;
        margin-inline-end: 15px;
        color: #fff;
    }

    .main-header.light .navbar-button{
        color: #012143;
    }

    .main-header .mobile-menu-header {
        display: flex;
        border-bottom: 1px solid #eeeeee;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .main-header .mobile-menu-header .logo img {
        max-height: 30px;
    }

    .main-header .mobile-menu-header .close-icon .navbar-close {
        border: 0 none;
        width: 40px;
        height: 40px;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        background: transparent;
        line-height: 0;
    }

    .main-header .header-menu {
        z-index: 9999;
        position: fixed;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        visibility: hidden;
        opacity: 0;
        transition: opacity .5s ease-out;
    }

    .main-header .header-menu.active {
        visibility: visible;
        opacity: 1;
    }

    .main-header .header-menu>.inner {
        width: 320px;
        z-index: 999;
        position: absolute;
        background: #FFFFFF;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
        height: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        opacity: 0;
        left: -150px;
        transition: all .5s ease-out;
    }

    .main-header .header-menu.active>.inner {
        opacity: 1;
        left: 0;
        overflow-y: auto;
    }

    .main-header .nabbar-nav .mainmenu {
        padding: 24px 16px;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .main-header .nabbar-nav .mainmenu>li {
        display: block;
        padding-bottom: 16px;
        border-bottom: 1px solid rgb(246, 246, 249);
    }

    .main-header .nabbar-nav .mainmenu>li>a {
        color: rgb(54, 54, 54);
        text-decoration: none;
        background-color: transparent;
        border: medium;
        cursor: pointer;
        font-weight: 600;
        font-size: 15px;
        line-height: 19px;
        width: 100%;
        text-align: start;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.4s ease-in-out;
    }

    .main-header .nabbar-nav .mainmenu>li.has-droupdown>a.open {
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu>li.has-droupdown>a>.dropdown-indicator {
        font-size: 17px;
        transform: rotate(-90deg);
        transition: 0.4s ease-in-out;
    }

    .main-header .nabbar-nav .mainmenu>li.has-droupdown>a.open>.dropdown-indicator {
        transform: rotate(-180deg);
    }

    .main-header .nabbar-nav .mainmenu>li.has-droupdown .submenu {
        display: none;
        padding: 15px;
        padding-top: 10px;
        padding-bottom: 0;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > ul > li.heading-dropdown{
        display: none;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > ul > li > a{
        display: block;
        color: #5b5b5b;
        font-size: 16px;
        line-height: 2;
        font-weight: 400;
        transition: all 0.3s;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > ul > li > a:hover{
        color: rgb(var(--color-primary));
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > a{
        display: block;
        color: #5b5b5b;
        font-size: 16px;
        line-height: 2;
        font-weight: 400;
        transition: all 0.3s;
    }

    .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > li > a:hover{
        color: rgb(var(--color-primary));
    }
}


.banner{
    background: #002143;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner.bannerlight{
    background: #fff;
}
.banner-up{
    background: #f1f4e4;
    padding: 100px 0px 70px 0px !important;
}

.banner .banner-illustration {
	position: absolute;
	z-index: -1;
	width: 100%;
	left: 0;
	top: 0;
	opacity: 1;
	height: 100%;
}

.banner .banner-illustration .img1 {
    width: 250px;
    position: absolute;
    left: 40px;
    top: 140px;
}

.banner .banner-illustration .img2 {
    width: 370px;
    position: absolute;
    right: 40px;
    top: 120px;
}

.banner .banner-inner{
    padding: 100px 0 70px 0;
}



.banner.bg-img .banner-inner {
	padding-top: 200px;
	padding-bottom: 200px;
}


.banner .banner-heading{
    display: block;
}

.banner-heading .heading-top {
    font-size: 14px;
    color: rgb(var(--color-primary-dark));
    border: 1px solid rgb(var(--color-primary-dark));
    border-radius: 100px;
    display: inline-block;
    padding: 7px 17px;
    background: #0fbd911a;
    margin-bottom: 14px;
    font-weight: 400;
}

.banner .banner-heading h1{
    font-size: 50px;
  color: #000000;
  font-weight: 700;
}

.banner:not(.bannerlight) .banner-heading p{
    color: #fff;
}

.banner.bannerlight .banner-heading h1{
    color: #002143;
}

.banner.bannerlight .banner-heading p{
    color: #4f4f4f;
}

.banner_list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.banner_list li {
    width: 45%;
    line-height: 30px;
    align-items: start;
    display: flex;
    padding: 0 6px 14px 0;
}

.banner-price  .price-value{
    font-size: 60px;
    font-weight: 700;
    padding-left: 2px;
}

.banner_list li span {
    font-size: 14px;
    margin-left: 13px;
    font-weight: 400;
    color: #002143;
}
.banner-price  .price-value{
    font-size: 60px;
    font-weight: 700;
    padding-left: 2px;
    color: #002143;
}

@media(max-width:480px){
    .banner-price  .price-value{
    font-size: 40px;
}
}

.banner-price .crncy_icon {
    font-size: 30px;
    font-weight: 600;
    color: #002143;
}
.banner-price sub{
    font-size: 35px;
    font-weight: 600;
    color: #002143;
}

@media (max-width:480px) {
    .banner .banner-heading h1 {
        font-size: 32px;
    }
    .banner_list li {
    width: 100%;
}
}

.banner .banner-heading .form-banner{
    position: relative;
    display: block;
}

.banner .banner-heading .form-banner .input {
    width: 100%;
    background: #fff;
    padding: 20px 15px;
    padding-inline-end: 80px;
    line-height: 1.5;
    color: #747474;
    border: 1px solid #00214352;
    border-radius: 20px;
    outline: unset;
}

.banner .banner-heading .form-banner .submit{
    position: absolute;
  right: 5px;
  top: 5px;
  background: rgb(var(--color-primary));
  padding: 15px 21px;
  line-height: 1.5;
  color: #fff;
  border: 0;
  border-radius: 15px;
  outline: unset;
  transition: all 0.3s;
}

.banner .banner-heading .form-banner .submit:hover{
    background: rgb(var(--color-primary-dark));
}


.transfer-form .select{
    position: absolute;
  right: 5px;
  top: 5px;
  background: rgb(var(--color-primary));
  padding: 15px 21px;
  line-height: 1.5;
  color: #fff;
  border: 0;
  border-radius: 15px;
  outline: unset;
  transition: all 0.3s;
}

.transfer-form .submit{
    position: unset !important;
  background: rgb(var(--color-primary));
  padding: 15px 30px !important;
}



.hero-bottom {
	position: absolute;
	background: url(../images/svg9.svg) repeat-x;
	height: 80px;
	bottom: -25px;
	left: 0%;
	right: 0%;
	background-size: cover;
	background-position-x: center;
	background-position-y: top;
}

.banner.two {
    padding: 150px 0 70px 0;
}

@media(max-width:1269px){
    .hero-bottom {
        bottom: -28px;
        left: 31%;
        width: 38%;
    }
    
    .banner .banner-illustration .img1 {
        top: 60%;
    }
    
    .banner .banner-illustration .img2 {
        top: 62%;
    }
}

@media(max-width:1140px){
    .hero-bottom {
        bottom: -28px;
        left: 35%;
        width: 30%;
    }
}
@media(max-width:991px){
    .hero-bottom {
        display: none;
    }
    
    .banner .banner-illustration .img1 {
        display: none;
    }
    
    .banner .banner-illustration .img2 {
        display: none;
    }
    .banner.bg-img .banner-inner {
        padding-top: 120px;
        padding-bottom: 70px;
    }
}

.img-design{
    position: relative;
    z-index: 1;
}

.img-design img{
    border-radius: 8px;
    position: relative;
    display: block;
}

.img-design img {
    box-shadow: -15px 15px 0px 0px rgb(var(--color-primary-dark));
}

.img-design::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    top: -15px;
    left: 15px;
    z-index: 2;
    border-radius: 8px;
}
.banner.bannerlight .img-design::before {
    border: 1px solid #0021435c;
}


main section {
	padding: 80px 0px 80px 0px;
}
@media(max-width:480px){
    main section {
    padding: 0px 0px 80px 0px;
}
}

/*========main css========*/
.feature-style-one{
    padding: 20px 15px;
    height: 100%;
    text-align: center;
}
.feature-style-one h3 {
    font-size: 34px;
    font-weight: 900;
    color: #00112C;
    margin-top: 20px;
    letter-spacing: 0.5px;
}
.feature-style-one p {
    font-size: 16px;
    font-weight: 400;
    color: #00112C;
}

.inner-link {
	font-weight: 600;
	color: rgb(var(--color-primary-dark));
	font-size: 16px;
	margin-top: 15px;
}

.inner-link:hover {
    color: rgb(var(--color-secondary));
    text-decoration: underline;
}

.inner-link:active {
  padding: 20px 30px;
  border: 2px solid var(--color-secondary);
  border-radius: 8px;
}

.baner-list li{
    display: flex;
    align-items: start;
    gap: 0px 15px;
}
.baner-list li img {
    min-width: 32px;
}

.section-heading h2 {
    font-size: 45px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 48px;
    font-weight: 600;
    color: #00112C;
}
.section-heading p {
    font-size: 16px;
    color: #00112C;
    font-weight: 300;
}

.section-heading h4{
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 32px;
    color: #00112C;
    font-weight: 600;
}
.search-bar{
    background-color: #04294F;
    color: #ffffff;
}

/*.text-white h2 ,.text-white p ,.text-white li{
    color: #ffffff !important;
}*/

.domain-search .form-banner{
    position: relative;
    display: block;
}

.domain-search .form-banner .input{
    width: 100%;
    background: #fff;
    padding: 20px 15px;
    padding-inline-end: 80px;
    line-height: 1.5;
    color: #747474;
    border: 0;
    border-radius: 20px;
    outline: unset;
}

.domain-search .form-banner .submit{
    position: absolute;
  right: 5px;
  top: 5px;
  background: rgb(var(--color-primary));
  padding: 15px 21px;
  line-height: 1.5;
  color: #fff;
  border: 0;
  border-radius: 15px;
  outline: unset;
  transition: all 0.3s;
}

.domain-search .form-banner .submit:hover{
    background: rgb(var(--color-primary-dark));
}




@media(max-width:480px){
    .feature-style-one h3 {
    font-size: 25px;
}
.section-heading h2 {
    font-size: 30px;
    margin-bottom: 10px;
}
.section-heading h4 {
    font-size: 20px;
    font-weight: 500;
}
}

.support-bg{
    background: #F0F0FF;
    padding: 30px 20px;
    border-radius: 8px;
}

.support-bg .contact-heading {
    margin-inline-start: 35px;
    border-right: 1px solid #dadadd;
}

@media(max-width:992px){
    .support-bg .contact-heading {
    border-right: unset;
    border-bottom: 1px solid #dadadd;
    padding-bottom: 30px;
}
}
.col-lg-4:last-child .contact-heading {
  border-right: unset;
}
.support-bg .contact-heading .content span{
   font-size: 20px;
    color: #123455;
    transition: all .4s;
    font-weight: 600;
}
.bg3{
    background: #E6F5FF;
}

.support-bg .contact-heading a{
    font-size: 13px;
    color: #123455;
    transition: all .4s;
}
.support-bg .contact-heading a:hover{
    text-decoration: underline;
}
.call-heading{
     padding: 30px 20px;
    border-radius: 8px;
}

.domain-card {
    border: 1px solid rgb(215, 215, 215);
    border-radius: 8px 8px 0px 0px;
    height: 100%;
}

.domain-card .top-heading {
    background-color: rgb(232, 232, 232);
    padding: 25px;
    border-radius: 5px 5px 0px 0px;
    position: relative;
}
.domain-card .top-heading h2 {
    margin: 0;
    padding: 0;
    line-height: 0;
    position: absolute;
    top: 20%;
    font-size: 50px;
    color: #fff;
}

.domain-card .search-bar {
    padding: 15px 20px 20px 20px;
    background: rgb(var(--color-white));
    position: relative;
    overflow: hidden;
}

.domain-card .search-bar > img{
opacity: 0.5;
}

/*.domain-price {
    display: block;
    margin-top: 20px;
}*/
.domain-price .name {
    font-size: 27px;
    font-weight: 500;
    line-height: 30px;
    color: rgb(10, 11, 11);
    width: 90%;
    position: absolute;
    top: 27px;
    left: 34px;
    text-transform: capitalize;
}
.domain-price .price {
    font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  color: rgb(var(--color-primary-dark));
  text-align: center;
  display: block;
  padding-top: 17px;
}
.domain-price .price small {
    font-size: 15px;
}

.feature-style-3 h4{
    font-size: 25px;
    font-weight: 600;
    color: #00112c;
    margin-top: 15px;
}
.feature-style-3 p {
    font-size: 16px;
    font-weight: 400;
    color: #00112c;
}

@media(max-width:480px){
    .feature-style-3{
        text-align: center;
    }
}

.important-notes .list.check li{
    align-items: start;
    line-height: 23px;
}

.important-notes .section-heading{
    border: 2px solid rgb(var(--color-primary-dark));
    padding: 50px;
    border-radius: 8px;
}

.feature-style-3.two {
    padding: 20px;
    border: 2px solid rgb(0, 33, 67);
    border-radius: 8px;
    background: rgba(57, 239, 192, 0.13);
    height: 100%;
}

.tabing .tabs {
    border-left: 1px solid rgb(var(--color-secondary));
}

.tabing .tabs button {
    display: block;
    border: unset;
    background: transparent;
    padding: 10px 30px 10px 10px;
    color: #b5b5b5;
    font-weight: 500;
    border-left: 5px solid transparent;
    width: 100%;
    text-align: start;
}
.tabing .tabs button.active {
    border: 1px solid;
    border-left: 5px solid;
    color:#00112c;
    width: 90%;
    border-color: rgb(var(--color-secondary));
    text-align: start;
}

.tab-content {
 display: none;
}


.tab-select {
    border: 1px solid rgb(var(--color-primary-dark));
    border-radius: 8px;
    background: unset;
    font-size: 20px;
    font-weight: 600;
}

.tab-content.active {
 display: block;
}
.tab-select {
            display: none;
            margin-bottom: 20px;
            padding: 10px;
            width: 100%;
        }

@media screen and (max-width: 767px) {
            .tab-buttons {
                display: none;
            }

            .tab-select {
                display: block;
            }
        }


.group-button{
    display: flex;
    align-items: center;
    gap: 30px;
}

@media(max-width:480px){
    .group-button{
    display: block;
}
.group-button a:first-child{
    margin-bottom:15px;
}
.important-notes .section-heading{
    padding: 10px;
}
}

/* ----------------------------------------------------------------
     contact form css
------------------------------------------------------------------- */
.login-content{
    text-align: center;
    padding-top: 30px;
    height: 100vh;
}



.login-form{
    padding: 30px;
    border: 1px solid #63666959;
    border-radius: 8px 8px 0px 0px;
    margin-top: 20px;
    max-height: 400px;
    overflow: auto;
}
.login-content span{
    font-size: 12px;
    margin-top: 5px;
    font-weight: 400;
}
.login-content span label{
    border-bottom: 2px solid #0fbd91;
}
.login-form h4{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 30px;
}
.login-form label {
    font-size: 16px;
    font-weight: 400;
    color: #6f737d;
    margin-bottom: 4px;
}
.pwrest{
    display: flex;
    justify-content: space-between;
}

.login_footer{
    padding: 20px;
    border-left: 1px solid #63666959;
    border-right: 1px solid #63666959;
    border-bottom: 1px solid #63666959;
    border-radius: 0px 0px 8px 8px;
}
.login_footer span{
    font-size: 16px;
}

.login-sidebar {
    height: 100vh;
    display: flex;
    align-items: center;
    background: #002143;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

@media(max-width:991px){
    .login-sidebar {
    height: auto;
    padding-bottom: 50px;
}
}
.feature-style-4.bordered{
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    height: 100%;
}

.bg-primary{
    background:#002143!important;
}

.login-sidebar h4{
    font-size: 20px;
    font-weight: 500;
}
.login-sidebar .feature-style-4 p{
    font-size: 15px;
    font-weight: 400;
}

/* ----------------------------------------------------------------
     contact form css
------------------------------------------------------------------- */
.contact-form{
    padding: 50px;
    border-radius: 8px;
    background: #fff;
}
.contact-form p{
    font-size: 16px;
    color: rgb(99, 102, 105) !important;
    font-weight: 400;
}

 .inputs {
    display: block;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #63666959;
}

.abt-cmpny {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: all .4s;
    height: 100%;
}

.abt-cmpny .icon{
    background: #fff;
    border-radius: 8px;
    width: fit-content;
    padding: 12px;
    border-radius: 8px;
}

.abt-cmpny .content h4{
    font-size: 25px;
    font-weight: 500;
    color: #00112C;
}
.abt-cmpny .content span {
    font-size: 14px;
    font-weight: 500;
    color: #00112CA3;
}

.abt-cmpny:hover {
    transform: scale(1.05) !important;
}

.feature-style-3.bordered{
    border: 1px solid #00112CA3;
    border-radius: 8px;
    transition: all .4s;
    padding: 30px;
    height: 100%;
}

.policy h3 {
    font-size: 25px;
    font-weight: 500;
    color: rgb(var(--color-primary-dark));
}
hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 2px dotted rgb(var(--color-primary-dark));
     opacity: 0.50; 
}

@media(max-width:480px){
    .contact-form{
    padding: 10px;
}
}
/* ----------------------------------------------------------------
    Tabings Css
------------------------------------------------------------------- */
.tabs-section-one .tabs {
    display: block;
    width: 100%;
}

.tabs-section-one .tabs .items {
    display: flex !important;
    width: 100%;
}

.tabs-section-one .tabs .items .item {
    flex: 1 1 auto;
    -webkit-box-flex: 1;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 20px 10px;
    position: relative;
    cursor: pointer;
    display: block;
    background: #d8ebff;
    color: #333;
    text-align: center;
    border-inline-end: 1px solid #c6d4ea;
}

.tabs-section-one .tabs .items .item.active {
    background: rgb(var(--color-primary));
    color: #fff;
    border-color: rgb(var(--color-primary));
}

.tabs-section-one .tabs .items .item:last-child{
    border: unset;
}

.tabs-section-one .contents {
    display: block;
}

.tabs-section-one .contents .item {
    display: none;
}

.tabs-section-one .contents .item.active {
    display: block;
}

@media (max-width:500px) {
    .tabs-section-one .tabs .items .item{
        padding: 15px 10px;
        font-size: 14px;
    }
}

.tabs-section-two .tabs {
    display: block;
    width: 100%;
}

.tabs-section-two .tabs .items {
    display: block;
    margin: 0 auto 60px;
    border-bottom: 1px solid #e0e0e0;
}

.tabs-section-two .tabs .items .item {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 12px 0;
    position: relative;
    color: rgb(var(--color-secondary));
    cursor: pointer;
}

.tabs-section-two .tabs.many-tabs .items .item {
    font-size: 16px;
}

.tabs-section-two .tabs .items .item+.item {
    margin-inline-start: 40px;
}

.tabs-section-two .tabs .items .item.active {
    color: #1b1b1b;
    font-weight: 600;
}

.tabs-section-two .tabs .items .item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 4px;
    background: 0 0;
    transition: width .5s linear;
}

.tabs-section-two .tabs .items .item.active:after {
    width: 100%;
    background: rgb(var(--color-secondary));
}

.tabs-section-two .contents {
    display: block;
}

.tabs-section-two .contents .item {
    display: none;
}

.tabs-section-two .contents .item.active {
    display: block;
}

@media (max-width:767px) {
    .tabs-section-two .tabs .items .item {
        font-size: 14px;
    }

    .tabs-section-two .tabs .items .item+.item {
        margin-inline-start: 30px;
    }

    .tabs-section-two .tabs .items {
        margin: 0 auto 30px;
    }

    .tabs-section-two .tabs.many-tabs .items {
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .tabs-section-two .tabs.many-tabs .items::-webkit-scrollbar {
        display: none;
    }

    .tabs-section-two .tabs.many-tabs .items {
        display: flex;
    }

    .tabs-section-two .tabs.many-tabs .items .item {
        white-space: nowrap;
    }
}
/* ----------------------------------------------------------------
    27. Titan Email Video
------------------------------------------------------------------- */

.titanmail-video{
    background-color: rgb(250, 251, 254);
    border: 15px solid rgba(196, 192, 192, 0.5);
    border-radius: 5px;
    overflow: hidden; 
    }
    .titanmail-video video{
        height: 100%;
  width: 100%;
  display: flex;
  border: none;
  background-color: #000;
    }














/*========Footer css========*/
.testimonial{
        background-image: url(../images/testimonials_bg.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
}

.testi-heading{
    color: rgb(var(--color-primary));
}
.testimonial-left-img{
margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.testi-card{
    display: flex;
}

.w-85{
    width: 85%;
}

.testi-card .testi-content{
    width: 100%;
    margin-inline-end: 20px;
}
.testi-card .testi-right-end-imgt{
    width: 15%;
}

.testi-right-end-img ul li + li {
    margin-top: 10px;
}
 .testi-right-end-img ul li:hover{
   cursor: pointer;
}

.testi-right-end-img ul li:hover img{
    border-color: rgb(var(--color-primary-dark));
 }

.testi-card .review {
	background: #ffffff;
	padding: 45px 50px 50px 40px;
	margin: 30px 0px 30px 30px;
	box-shadow: -5px 8px 20px 0px rgba(0, 37, 89, 0.06);
	border-radius: 10px;
	position: relative;
}

.testi-card .review::after {
	position: absolute;
	content: "";
	left: 0px;
	bottom: -29px;
	border-bottom: 0 solid;
	border-left: 0 solid;
	border-right: 45px solid;
	border-top: 45px solid;
	background-color: initial;
	border-color: transparent;
	border-top-color: #ffffff;
}
.testi-card .author-img{
  width: 110px;
  border: 1px solid rgb(var(--color-secondary));
  border-radius: 10px;
  margin-right: 20px;
}

.testi-card .author-img img {
	margin-left: 10px;
	margin-top: 10px;
	border-radius: 10px;
	width: 100px;
	margin-bottom: -1px;
}

.testi-content .about-autor{
	margin-left: 30px;
	margin-top: 55px;
	display: flex;
	align-items: center;
}

.author-details img {
	width: 60px;
	margin-top: 10px;
}

.section-heading h5{
        font-size: 20px;
        font-weight: 600;
        color: #00112c;
}

.author-details span {
	font-size: 16px;
	font-weight: 400;
	color: #454545;
}

.testi-right-end-img ul li img{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid transparent;
}

@media(max-width:480px){
    .testi-right-end-img ul li img{
       display: none;
}
.testi-card .review {
	background: #ffffff;
	padding: 45px 10px 10px 10px;
	margin: 30px 0px 30px 10px;
	box-shadow: -5px 8px 20px 0px rgba(0, 37, 89, 0.06);
	border-radius: 10px;
	position: relative;
}
.testi-content .about-autor {
	margin-left: 10px;
}
}

.shopping-cart {
	background-image: url(../images/brand_map.png);
	background-position: center center;
	background-size: cover;
	background-color: #f7f7f7;
	background-size: 50%;
}

.shopping-cart ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.shopping-cart ul li {
    padding: 10px 10px;
    border: 1px solid rgb(var(--color-primary));
    margin: 0px 10px 20px 10px;
    border-radius: 8px;
} 
@media(max-width:767px){
    .shopping-cart ul li{
        width: 33.33%;
    }
}
@media(max-width:480px){
    .shopping-cart ul li{
        width: 40%!important;
        padding: 10px;
    }
}
/*========Footer css========*/
.main-footer{
    padding: 100px 0px 50px 0px;
    background: #00112C;
    color: #ffffff;
}
.main-footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
}
.main-footer ul li a {
    color: #ffffff;
    transition: var(--transition);
    line-height: 35px;
    font-weight: 400;
    font-size: 16px;
}

.footer-social-link ul {
    display: flex;
    align-items: center;
    gap: 0px 15px;
}
.footer-social-link li a i{
    color: #ffffff;
    transition: var(--transition);
    font-size: 20px;
}
.footer-social-link li a:hover i{
    color: #38E8B0;
}
.main-footer ul li a:hover{
    color: #38E8B0;
}

footer hr {
    border: 0;
    border-bottom: 1px solid #8795AA;
    margin-top: 30px;
    margin-bottom: 25px;
}
.policy {
	font-size: 13px;
	line-height: 27px;
	font-weight: 300;
	letter-spacing: 1px;
}
.policy a {
	font-size: 13px;
	color: rgb(var(--color-white));
	font-weight: 300;
	margin-inline-end: 8px;
}
.policy a:hover{
    color: rgb(var(--color-primary));
}


@media(max-width:480px){
    .main-footer{
    padding: 50px 0px !important;
}
}

/*--------------------------------------------------------------
# accordion
--------------------------------------------------------------*/

.accordion li {
    background: #FFFFFF;
    padding: 0px 20px;
    border: 1px solid #00112C;
    border-radius: 8px;
    transition: var(--transition);
}


.accordion li a {
    font-size: 16px;
    font-weight: 500;
    color: #00112C;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    justify-content: space-between;
}
.accordion li+li{
    margin-top: 15px;
}

.accordion li a.active {
    color: var(--color-secondary);
}

.accordion li a::after {
    content: '\F286';
    min-width: 30px;
    height: 30px;
    display: flex;
    font-family: bootstrap-icons;
    background: rgb(var(--color-secondary));
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    margin-inline-start: auto;
    border-radius: 8px;
}
.accordion li.active a::after{
  content: '\F282';
  width: 30px;
  height: 30px;
  font-family: bootstrap-icons;
  transition: all .4s;
}

.accordion li p {
	padding: 10px 0;
	font-size: 15px;
	line-height: 1.7;
	color: #00112C;
	font-weight: 400;
}


@media(max-width:480px){
    .accordion li a {
        font-size: 18px;
    }
}
/* --------------------------------------------------------------
    Scroll Top
-------------------------------------------------------------- */

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: 15px;
    bottom: -40px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.5s;
    cursor: pointer;
    border: 0;
    outline: unset;
    box-shadow: unset;
}

.scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    inset-inline-start: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}


.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
	background: rgb(var(--color-primary));
}

.scroll-top:hover {
    background: rgb(var(--color-primary-dark));
    color: #fff;
}


/* ----------------------------------------------------------------
    plan css
------------------------------------------------------------------- */

.plan-style-one {
    background-color: #f2f2f2;
    padding: 32px 24px;
    border-radius: 8px;
    transition: all 0.4s;
    margin-top: 7px;
    height: 100%;
}

.plan-style-one .title {
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
	color: #00112c;
	transition: all 0.4s;
}

.plan-style-one .price {
    font-size: 40px;
    line-height: 56px;
    font-weight: 700;
    color: #00112c;
    margin: 20px 0px;
    transition: all 0.4s;
}
.plan-style-one .price span {
	font-size: 17px;
	line-height: 16px;
	font-weight: 500;
	color: #4e4f51;
}

.plan-style-one p.content {
	font-size: 16px;
	line-height: 28px;
	font-weight: 500;
	color: #4e4f51;
	transition: all 0.4s;
}

.border {
	border: 1px solid #dee2e6 !important;
}

.plan-style-one h4 {
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
	color: #00112c;
	padding-top: 20px;
	transition: all 0.4s;
}

.list.check li{
        font-size: 16px;
        line-height: 16px;
        font-weight: 500;
        color: #00112c;
        padding-top: 15px;
        display: flex;
        align-items: center;
        transition: all 0.4s;
}
.list.check li::before{
    content: "\F633";
    padding: 2px;
    font-family: bootstrap-icons;
    border-radius: 50%;
    line-height: 16px;
    font-size: 16px;
    color: rgb(var(--color-white));
    background-color: rgb(var(--color-primary));
    margin-inline-end: 8px;
}

.feature-list{
    display: flex;
    flex-wrap: wrap;
}

.feature-list li{
    width: 45%;
}

@media(max-width:767px){
    .feature-list li{
    width: 100%;
}
}
.plan-btn1 {
	display: inline-block;
	background-color: rgb(var(--color-primary));
	border-radius: 7px;
	padding: 14px 20px;
	color: #00112c;
	font-weight: 600;
	overflow: hidden;
	z-index: 1;
	transition: all 0.4s;
	border: none;
	line-height: 13px;
}

.plan-btn1 {
	width: 100% !important;
	bottom: 22px;
	justify-content: center;
	display: flex;
}

.button.up {
	margin-top: 30px;
	transition: all .4s;
	padding: 0px 20px;
}
.button.up:hover{
    transform: translateY(-4px);
  transition: all 0.4s;
}

.plan-style-one:hover {
	background-color: rgb(var(--color-primary-dark));
    transition: all .4s;
}

.plan-style-one:hover .title{
    color: rgb(var(--color-white))!important;
}

.plan-style-one:hover .title ,.plan-style-one:hover .price ,.plan-style-one:hover span ,.plan-style-one:hover p.content ,.plan-style-one:hover h4 , .plan-style-one:hover li {
    color: #fff!important;
}

.plan-style-one:hover .list.check li::before{
        color: rgb(var(--color-primary-dark));
        background-color: rgb(255, 255, 255);
}
.plan-style-one:hover .plan-btn1{
        background-color: #fff;
        color: #00112c;
        display: flex;
}

.plan-style-one:hover .plan-btn1 i{
    color: #00112c;
}

.plan-style-one.active{
    background:rgb(var(--color-primary-dark));
}

.plan-style-one.active .title ,.plan-style-one.active .price ,.plan-style-one.active span ,.plan-style-one.active p.content ,.plan-style-one.active h4 , .plan-style-one.active li {
    color: #fff!important;
}

.plan-style-one.active .list.check li::before{
        color: rgb(var(--color-primary-dark));
        background-color: rgb(255, 255, 255);
}
.plan-style-one.active .plan-btn1{
        background-color: #fff;
        color: #00112c;
        display: flex;
}

.plan-style-one.active .plan-btn1 i{
    color: #00112c;
}




/* ----------------Custom css----------------- */
/*========Custom css========*/
/*========Custom css========*/
/*========Custom css========*/
/*========Custom css========*/

/*-------------------Best web hosting section--------------------------*/
.best-web-hosting {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.best-web-hosting__header {
    text-align: center;
    margin-bottom: 50px;
}

.best-web-hosting__title {
    font-size: 36px;
    font-weight: 700;
    color: #00112C;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.best-web-hosting__subtitle {
    font-size: 18px;
    color: #373737;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Grid layout with asymmetrical widths */
.best-web-hosting__grid {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

/* First row with varying widths */
.best-web-hosting__card--renowned {
    grid-column: span 10;
    background-color: rgba(57, 239, 192, 0.1);
}

.best-web-hosting__card--scalability {
    grid-column: span 10;
    background-color: rgba(15, 189, 145, 0.1);
}

.best-web-hosting__card--credible {
    grid-column: span 4;
    background-color: rgba(18, 118, 140, 0.1);
}

/* Second row with varying widths */
.best-web-hosting__card--security {
    grid-column: span 8;
    background-color: rgba(57, 239, 192, 0.1);
}

.best-web-hosting__card--affordable {
    grid-column: span 6;
    background-color: rgba(18, 118, 140, 0.1);
}

.best-web-hosting__card--technologies {
    grid-column: span 10;
    background-color: rgba(15, 189, 145, 0.1);
}

/* Card styling */
.best-web-hosting__card {
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(57, 239, 192, 0.3);
}

.best-web-hosting__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgb(15, 189, 145);
}

.best-web-hosting__card-title {
    font-size: 24px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.best-web-hosting__card-text {
    color: #373737;
    line-height: 1.6;
    font-size: 16px;
    flex-grow: 1;
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Icons and badges */
.best-web-hosting__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.best-web-hosting__icon svg {
    width: 60px;
    height: 60px;
    color: rgb(15, 189, 145);
}

.best-web-hosting__card-badge {
    font-size: 20px;
    font-weight: 600;
    color: rgb(15, 189, 145);
    margin-top: 15px;
    text-align: center;
    border-bottom: 2px dotted rgb(15, 189, 145);
    display: inline-block;
    padding-bottom: 5px;
    font-family: var(--font-primary);
}

/* Special styling for smaller feature cards */
.best-web-hosting__card--credible,
.best-web-hosting__card--affordable {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .best-web-hosting__grid {
        grid-template-columns: repeat(12, 1fr);
    }
    
    .best-web-hosting__card--renowned,
    .best-web-hosting__card--scalability {
        grid-column: span 6;
    }
    
    .best-web-hosting__card--credible {
        grid-column: span 12;
        height: auto;
    }
    
    .best-web-hosting__card--security {
        grid-column: span 6;
    }
    
    .best-web-hosting__card--affordable {
        grid-column: span 6;
    }
    
    .best-web-hosting__card--technologies {
        grid-column: span 12;
    }
}

@media screen and (max-width: 768px) {
    .best-web-hosting__grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .best-web-hosting__card--renowned,
    .best-web-hosting__card--scalability,
    .best-web-hosting__card--credible,
    .best-web-hosting__card--security,
    .best-web-hosting__card--affordable,
    .best-web-hosting__card--technologies {
        grid-column: span 1;
    }
    
    .best-web-hosting__title {
        font-size: 30px;
    }
    
    .best-web-hosting__subtitle {
        font-size: 16px;
    }
    
    .best-web-hosting__card {
        padding: 25px;
    }
    
    .best-web-hosting__card-title {
        font-size: 22px;
    }
}

/*-------------------Web hosting services section--------------------------*/
.hosting-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: var(--font-primary);
}

.hosting-services__header {
    text-align: center;
    margin-bottom: 50px;
}

.hosting-services__title {
    font-size: 36px;
    font-weight: 700;
    color: #00112C;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.hosting-services__subtitle {
    font-size: 18px;
    color: #373737;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Asymmetrical grid layout */
.hosting-services__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
    margin-bottom: 30px;
}

/* First row cards */
.hosting-services__card--wordpress {
    grid-column: span 4;
    background-color: rgba(57, 239, 192, 0.1);
}

.hosting-services__card--cloud {
    grid-column: span 4;
    background-color: #002143;
    color: white;
}

.hosting-services__card--vps {
    grid-column: span 4;
    background-color: rgba(57, 239, 192, 0.1);
}

/* Second row cards */
.hosting-services__card--dedicated {
    grid-column: span 4;
    background-color: rgba(57, 239, 192, 0.1);
}

.hosting-services__card--woocommerce {
    grid-column: span 4;
    background-color: rgba(57, 239, 192, 0.1);
}

.hosting-services__card--magento {
    grid-column: span 4;
    background-color: #002143;
    color: white;
}

/* Card styling */
.hosting-services__card {
    border-radius: 8px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(57, 239, 192, 0.3);
}

.hosting-services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    border-color: rgb(15, 189, 145);
}

.hosting-services__card--cloud:hover,
.hosting-services__card--magento:hover {
    border-color: #fff;
}

.hosting-services__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hosting-services__icon img {
    width: 32px;
    height: 32px;
}

.hosting-services__card--cloud .hosting-services__icon,
.hosting-services__card--magento .hosting-services__icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.hosting-services__card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #00112C;
    font-family: var(--font-primary);
}

.hosting-services__card--cloud .hosting-services__card-title,
.hosting-services__card--magento .hosting-services__card-title {
    color: white;
}

.hosting-services__text {
    font-size: 16px;
    line-height: 1.6;
    color: #373737;
    margin-bottom: 25px;
    flex-grow: 1;
    font-weight: 400;
}

.hosting-services__card--cloud .hosting-services__text,
.hosting-services__card--magento .hosting-services__text {
    color: rgba(255, 255, 255, 0.9);
}
.hosting-services__card--cloud .hosting-services__title,
.hosting-services__card--magento .hosting-services__title {
    color: rgba(255, 255, 255, 0.9);
}

.hosting-services__price {
    margin-bottom: 20px;
    font-size: 16px;
    color: #373737;
}

.hosting-services__card--cloud .hosting-services__price,
.hosting-services__card--magento .hosting-services__price {
    color: rgba(255, 255, 255, 0.9);
}

.hosting-services__amount {
    font-size: 26px;
    font-weight: 700;
    color: #00112C;
}

.hosting-services__card--cloud .hosting-services__amount,
.hosting-services__card--magento .hosting-services__amount {
    color: white;
}

.hosting-services__period {
    font-size: 16px;
    color: #373737;
}

.hosting-services__card--cloud .hosting-services__period,
.hosting-services__card--magento .hosting-services__period {
    color: rgba(255, 255, 255, 0.9);
}

.hosting-services__btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
    line-height: 1rem;
    letter-spacing: 0.35px;
}

.hosting-services__btn--primary {
    background-color: rgb(57, 239, 192);
    color: #00112C;
    border: 2px solid rgb(57, 239, 192);
}

.hosting-services__btn--primary:hover {
    background-color: rgb(15, 189, 145);
    border-color: rgb(15, 189, 145);
}

.hosting-services__btn--outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hosting-services__btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hosting-services__popular-tag {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: rgb(57, 239, 192);
    color: #00112C;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hosting-services__grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .hosting-services__card--wordpress,
    .hosting-services__card--cloud,
    .hosting-services__card--vps {
        grid-column: span 3;
    }
    
    .hosting-services__card--dedicated,
    .hosting-services__card--woocommerce,
    .hosting-services__card--magento {
        grid-column: span 3;
    }
}

@media screen and (max-width: 768px) {
    .hosting-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hosting-services__card--wordpress,
    .hosting-services__card--cloud,
    .hosting-services__card--vps,
    .hosting-services__card--dedicated,
    .hosting-services__card--woocommerce,
    .hosting-services__card--magento {
        grid-column: span 2;
    }
    
    .hosting-services__title {
        font-size: 30px;
    }
    
    .hosting-services__subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .hosting-services__grid {
        grid-template-columns: 1fr;
    }
    
    .hosting-services__card--wordpress,
    .hosting-services__card--cloud,
    .hosting-services__card--vps,
    .hosting-services__card--dedicated,
    .hosting-services__card--woocommerce,
    .hosting-services__card--magento {
        grid-column: span 1;
    }
    
    .hosting-services__card {
        padding: 30px 25px;
    }
    
    .hosting-services__btn {
        align-self: center;
        width: 100%;
        text-align: center;
    }
}



/* Rating Section CSS */
.rating-hosting-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  font-family: var(--font-primary, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  background: linear-gradient(to right, rgba(242, 242, 242, 0.5), rgba(255, 255, 255, 0.7));
}

/* Background branding element */
.rating-hosting-section::before {
  content: "RATINGS";
  position: absolute;
  font-size: 320px;
  font-weight: 900;
  color: rgba(0, 33, 67, 0.03);
  top: -45px;
  left: 0;
  width: 100%;
  text-align: center;
  letter-spacing: 20px;
  z-index: -1;
  pointer-events: none;
}

.rating-hosting-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rating-hosting-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #00112C;
  margin-bottom: 60px;
  position: relative;
}

.rating-hosting-heading::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: rgb(57, 239, 192);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.rating-hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto;
}

.rating-hosting-card {
  background: #fff;
  border: 1px solid rgba(0, 33, 67, 0.08);
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating-hosting-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgb(57, 239, 192), rgb(15, 189, 145));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-hosting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 189, 145, 0.3);
}

.rating-hosting-card:hover::before {
  transform: scaleX(1);
}

.rating-hosting-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.rating-hosting-score {
  font-size: 32px;
  font-weight: 700;
  color: #00112C;
  line-height: 1;
}

.rating-hosting-total {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}

.rating-hosting-logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rating-hosting-logo img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

.rating-hosting-stars {
  display: flex;
  gap: 2px;
  font-size: 20px;
  color: #FF9800;
  justify-content: center;
}

.rating-hosting-star {
  position: relative;
  transition: transform 0.2s ease;
}

.rating-hosting-card:hover .rating-hosting-star {
  animation: rating-hosting-pulse 1s ease-in-out;
  animation-fill-mode: both;
}

@keyframes rating-hosting-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.rating-hosting-card:hover .rating-hosting-star:nth-child(1) { animation-delay: 0s; }
.rating-hosting-card:hover .rating-hosting-star:nth-child(2) { animation-delay: 0.1s; }
.rating-hosting-card:hover .rating-hosting-star:nth-child(3) { animation-delay: 0.2s; }
.rating-hosting-card:hover .rating-hosting-star:nth-child(4) { animation-delay: 0.3s; }
.rating-hosting-card:hover .rating-hosting-star:nth-child(5) { animation-delay: 0.4s; }

.rating-hosting-star-empty {
  color: #d0d0d0;
}

.rating-hosting-star-half {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.rating-hosting-star-half::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #FF9800;
}

/* Custom logos styling */
.rating-hosting-custom-logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #00112C;
}

.rating-hosting-logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #f5a623;
  color: white;
  border-radius: 50%;
  margin-right: 5px;
  font-weight: 700;
  font-size: 14px;
}

.rating-hosting-advice-icon,
.rating-hosting-logo-icon {
  font-size: 22px;
  margin-right: 5px;
}

.rating-hosting-review-logo {
  font-size: 20px;
  font-weight: 700;
}

.rating-hosting-host {
  color: #002143;
}

.rating-hosting-review {
  color: rgb(15, 189, 145);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .rating-hosting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rating-hosting-section::before {
    font-size: 220px;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .rating-hosting-heading {
    font-size: 30px;
  }
  
  .rating-hosting-section {
    padding: 60px 0;
  }
  
  .rating-hosting-section::before {
    font-size: 160px;
  }
}

@media screen and (max-width: 576px) {
  .rating-hosting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .rating-hosting-card {
    padding: 20px;
  }
  
  .rating-hosting-score {
    font-size: 28px;
  }
  
  .rating-hosting-stars {
    font-size: 18px;
  }
  
  .rating-hosting-section::before {
    font-size: 100px;
    letter-spacing: 10px;
  }
}

/* Add a shine effect on card hover */
.rating-hosting-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.rating-hosting-card:hover::after {
  opacity: 1;
  animation: rating-hosting-shine 1.5s ease-in-out;
}

@keyframes rating-hosting-shine {
  0% {
    left: -150%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0.3;
  }
}



/*-------------------rating-hosting-sections--------------------------*/



/* Rating Section CSS */
.rating-hosting-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    font-family: var(--font-primary, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
    background: linear-gradient(to right, rgba(242, 242, 242, 0.5), rgba(255, 255, 255, 0.7));
  }
  
  /* Background branding element */
  .rating-hosting-section::before {
    content: "RATINGS";
    position: absolute;
    font-size: 320px;
    font-weight: 900;
    color: rgba(0, 33, 67, 0.03);
    top: -45px;
    left: 0;
    width: 100%;
    text-align: center;
    letter-spacing: 20px;
    z-index: -1;
    pointer-events: none;
  }
  
  .rating-hosting-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .rating-hosting-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #00112C;
    margin-bottom: 60px;
    position: relative;
  }
  
  .rating-hosting-heading::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: rgb(57, 239, 192);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
  }
  
  .rating-hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1120px;
    margin: 0 auto;
  }
  
  .rating-hosting-card {
    background: #fff;
    border: 1px solid rgba(0, 33, 67, 0.08);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .rating-hosting-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(57, 239, 192), rgb(15, 189, 145));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .rating-hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(15, 189, 145, 0.3);
  }
  
  .rating-hosting-card:hover::before {
    transform: scaleX(1);
  }
  
  .rating-hosting-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .rating-hosting-score {
    font-size: 32px;
    font-weight: 700;
    color: #00112C;
    line-height: 1;
  }
  
  .rating-hosting-total {
    font-size: 16px;
    font-weight: 500;
    color: #666;
  }
  
  .rating-hosting-logo {
    height: 45px;
    display: flex;
    padding-right: 20%;
    align-items: start;
    justify-content: flex-end;
  }
  
  .rating-hosting-logo img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
  }
  
  .rating-hosting-stars {
    display: flex;
    gap: 2px;
    font-size: 20px;
    color: #FF9800;
    justify-content: center;
  }
  
  .rating-hosting-star {
    position: relative;
    transition: transform 0.2s ease;
  }
  
  .rating-hosting-card:hover .rating-hosting-star {
    animation: rating-hosting-pulse 1s ease-in-out;
    animation-fill-mode: both;
  }
  
  @keyframes rating-hosting-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }
  
  .rating-hosting-card:hover .rating-hosting-star:nth-child(1) { animation-delay: 0s; }
  .rating-hosting-card:hover .rating-hosting-star:nth-child(2) { animation-delay: 0.1s; }
  .rating-hosting-card:hover .rating-hosting-star:nth-child(3) { animation-delay: 0.2s; }
  .rating-hosting-card:hover .rating-hosting-star:nth-child(4) { animation-delay: 0.3s; }
  .rating-hosting-card:hover .rating-hosting-star:nth-child(5) { animation-delay: 0.4s; }
  
  .rating-hosting-star-empty {
    color: #d0d0d0;
  }
  
  .rating-hosting-star-half {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  
  .rating-hosting-star-half::after {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #FF9800;
  }
  
  /* Custom logos styling */
  .rating-hosting-custom-logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #00112C;
  }
  
  .rating-hosting-logo-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f5a623;
    color: white;
    border-radius: 50%;
    margin-right: 5px;
    font-weight: 700;
    font-size: 14px;
  }
  
  .rating-hosting-advice-icon,
  .rating-hosting-logo-icon {
    font-size: 22px;
    margin-right: 5px;
  }
  
  .rating-hosting-review-logo {
    font-size: 20px;
    font-weight: 700;
  }
  
  .rating-hosting-host {
    color: #002143;
  }
  
  .rating-hosting-review {
    color: rgb(15, 189, 145);
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 992px) {
    .rating-hosting-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .rating-hosting-section::before {
      font-size: 220px;
      top: 0;
    }
  }
  
  @media screen and (max-width: 768px) {
    .rating-hosting-heading {
      font-size: 30px;
    }
    
    .rating-hosting-section {
      padding: 60px 0;
    }
    
    .rating-hosting-section::before {
      font-size: 160px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .rating-hosting-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .rating-hosting-card {
      padding: 20px;
    }
    
    .rating-hosting-score {
      font-size: 28px;
    }
    
    .rating-hosting-stars {
      font-size: 18px;
    }
    
    .rating-hosting-section::before {
      font-size: 100px;
      letter-spacing: 10px;
    }
  }
  
  /* Add a shine effect on card hover */
  .rating-hosting-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }
  
  .rating-hosting-card:hover::after {
    opacity: 1;
    animation: rating-hosting-shine 1.5s ease-in-out;
  }
  
  @keyframes rating-hosting-shine {
    0% {
      left: -150%;
      opacity: 0;
    }
    100% {
      left: 100%;
      opacity: 0.3;
    }
  }

/*--------------------data-center-location-sections--------------------------*/


.data-center-location-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
  }
  
  .data-center-location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .data-center-location-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #00112C;
    margin-bottom: 60px;
    position: relative;
  }
  
  .data-center-location-heading::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: rgb(57, 239, 192);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
  }
  
  /* Map container */
  .data-center-location-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px;
  }
  
  .data-center-location-map {
    position: relative;
    width: 100%;
    height: auto;
  }
  
  .data-center-location-map img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Location markers */
  .data-center-location-marker {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -100%);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .data-center-location-marker:hover {
    z-index: 3;
  }
  
  .data-center-location-dot {
    width: 18px;
    height: 18px;
    background-color: #0078FF;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0, 120, 255, 0.3);
    transition: all 0.3s ease;
  }
  
  .data-center-location-marker:hover .data-center-location-dot {
    background-color: rgb(57, 239, 192);
    box-shadow: 0 0 0 6px rgba(57, 239, 192, 0.4), 0 0 20px rgba(57, 239, 192, 0.6);
    animation: data-center-location-pulse 1.5s infinite;
  }
  
  @keyframes data-center-location-pulse {
    0% { box-shadow: 0 0 0 4px rgba(57, 239, 192, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(57, 239, 192, 0.2); }
    100% { box-shadow: 0 0 0 4px rgba(57, 239, 192, 0.4); }
  }
  
  .data-center-location-line {
    width: 2px;
    height: 25px;
    background-color: #0078FF;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.3s ease;
  }
  
  .data-center-location-marker:hover .data-center-location-line {
    background-color: rgb(57, 239, 192);
  }
  
  .data-center-location-label {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: #1c736f;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .data-center-location-marker:hover .data-center-location-label {
    color: rgb(15, 189, 145);
  }
  
  .data-center-location-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(57, 239, 192, 0.3);
    pointer-events: none;
    z-index: 5;
  }
  
  .data-center-location-marker:hover .data-center-location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
  }
  
  .data-center-location-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 15px;
    height: 15px;
    background-color: white;
    border-right: 1px solid rgba(57, 239, 192, 0.3);
    border-bottom: 1px solid rgba(57, 239, 192, 0.3);
  }
  
  .data-center-location-tooltip h4 {
    margin: 0 0 8px;
    color: #00112C;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid rgba(57, 239, 192, 0.5);
    padding-bottom: 5px;
  }
  
  .data-center-location-tooltip p {
    margin: 4px 0;
    color: #444;
    font-size: 13px;
    line-height: 1.4;
  }
  
  /* Info panel */
  .data-center-location-info-panel {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(57, 239, 192, 0.2);
  }
  
  .data-center-location-info-title {
    font-size: 24px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 10px;
  }
  
  .data-center-location-info-description {
    color: #444;
    margin-bottom: 20px;
  }
  
  .data-center-location-info-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  
  .data-center-location-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .data-center-location-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: rgb(15, 189, 145);
  }
  
  .data-center-location-stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
  }
  
  /* Corrected positioning for location markers */
  .data-center-location-marker[data-location="usa"] {
    top: 35%;
    left: 23%;
  }
  
  .data-center-location-marker[data-location="canada"] {
    top: 25%;
    left: 20%;
  }
  
  .data-center-location-marker[data-location="europe"] {
    top: 34%;
    left: 49%;
  }
  
  .data-center-location-marker[data-location="india"] {
    top: 48%;
    left: 66%;
  }
  
  .data-center-location-marker[data-location="singapore"] {
    top: 55%;
    left: 75%;
  }
  
  .data-center-location-marker[data-location="australia"] {
    top: 65%;
    left: 80%;
  }
  
  /* Active state */
  .data-center-location-marker.active .data-center-location-dot,
  .data-center-location-marker.active-mobile .data-center-location-dot {
    background-color: rgb(57, 239, 192);
  }
  
  .data-center-location-marker.active .data-center-location-line,
  .data-center-location-marker.active-mobile .data-center-location-line {
    background-color: rgb(57, 239, 192);
  }
  
  .data-center-location-marker.active .data-center-location-tooltip,
  .data-center-location-marker.active-mobile .data-center-location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
  }
  
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .data-center-location-heading {
      font-size: 30px;
    }
    
    .data-center-location-info-stats {
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .data-center-location-dot {
      width: 14px;
      height: 14px;
    }
    
    .data-center-location-line {
      height: 20px;
      top: 14px;
    }
    
    .data-center-location-label {
      top: 36px;
      font-size: 12px;
    }
  }



/*-------------------Our Partner-sections--------------------------*/



.our-partner-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
    overflow: hidden;
}

/* Outer slider for entire sections */
.our-partner-main-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 350px;
}

/* Content slides (customers and partners) */
.our-partner-content-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 200%;
}

.our-partner-content-slide {
    width: 50%;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Header content */
.our-partner-header {
    margin-bottom: 40px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.our-partner-title {
    font-size: 48px;
    color: #444;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.our-partner-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.5;
}

/* Logos container */
.our-partner-logos-container {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

/* Display logos in a grid */
.our-partner-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Partner logo items */
.our-partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 10px;
    height: 80px;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.our-partner-logo:hover {
    transform: translateY(-5px);
    filter: grayscale(0%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.our-partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Navigation dots */
.our-partner-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.our-partner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.our-partner-dot.active {
    width: 25px;
    border-radius: 10px;
    background-color: #0077cc;
}

/* View more link */
.our-partner-view-more {
    display: block;
    text-align: right;
    margin-top: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.our-partner-view-more.visible {
    opacity: 1;
    transform: translateY(0);
}

.our-partner-view-more:hover {
    color: #0077cc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .our-partner-title {
        font-size: 36px;
    }
    
    .our-partner-subtitle {
        font-size: 16px;
    }
    
    .our-partner-logo {
        height: 60px;
        margin: 8px;
    }
}

@media (max-width: 480px) {
    .our-partner-title {
        font-size: 30px;
    }
    
    .our-partner-logo {
        height: 50px;
        margin: 5px;
    }
    
    .our-partner-main-slider {
        min-height: 300px;
    }
}


/*-------------------award-winning-sections--------------------------*/



.award-winning-section {
    background: linear-gradient(to right, #f2f7fb, #ffffff);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.award-winning-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.award-winning-badge {
    width: 440px;
    height: 240px;
    margin-right: 30px;
    position: relative;
    transition: transform 0.5s ease;
}

.award-winning-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.award-winning-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(57, 239, 192, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.award-winning-badge:hover {
    transform: translateY(-10px);
}

.award-winning-badge:hover::after {
    opacity: 1;
}

.award-winning-content {
    flex: 1;
    min-width: 300px;
}

.award-winning-title {
    font-size: 40px;
    font-weight: 700;
    color: #00112C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.award-winning-description {
    font-size: 16px;
    line-height: 1.6;
    color: #373737;
    margin-bottom: 20px;
    font-weight: 400;
}

.award-winning-link {
    color: rgb(var(--color-primary-dark, 15, 189, 145));
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.award-winning-link:hover {
    color: rgb(var(--color-secondary, 18, 118, 140));
}

.award-winning-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(var(--color-primary-dark, 15, 189, 145));
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.award-winning-link:hover::after {
    background-color: rgb(var(--color-secondary, 18, 118, 140));
    transform: scaleX(1.05);
}

.award-winning-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.award-winning-shape-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(57, 239, 192, 0.1), rgba(15, 189, 145, 0.05));
    top: -50px;
    left: 10%;
    filter: blur(30px);
}

.award-winning-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(225deg, rgba(18, 118, 140, 0.05), rgba(0, 33, 67, 0.03));
    bottom: -100px;
    right: 5%;
    filter: blur(40px);
}

/* Animation effects */
@keyframes award-winning-float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.award-winning-badge.animated {
    animation: award-winning-float 5s ease-in-out infinite;
}

/* Responsive styles */
@media (max-width: 992px) {
    .award-winning-container {
        flex-direction: column;
        text-align: center;
    }

    .award-winning-badge {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .award-winning-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .award-winning-section {
        padding: 40px 0;
    }

    .award-winning-title {
        font-size: 32px;
    }
    
    .award-winning-badge {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .award-winning-title {
        font-size: 28px;
    }
    
    .award-winning-description {
        font-size: 15px;
    }
    
    .award-winning-badge {
        width: 180px;
        height: 180px;
    }
}



/*-------------------web-hosting-solutions-section--------------------------*/


.web-hosting-solutions-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.web-hosting-solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.web-hosting-solutions-bg-text {
    position: absolute;
    top: -50px;
    left: 0;
    font-size: 220px;
    font-weight: 900;
    color: rgba(242, 242, 242, 0.8);
    white-space: nowrap;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: 5px;
}

.web-hosting-solutions-title {
    font-size: 36px;
    font-weight: 700;
    color: #00112C;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.web-hosting-solutions-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.web-hosting-solutions-links {
    grid-column: span 8;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.web-hosting-solutions-card {
    grid-column: span 4;
    background-color: #2b87e3;
    border-radius: 8px;
    padding: 30px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.web-hosting-solutions-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.web-hosting-solutions-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.web-hosting-solutions-card-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.web-hosting-solutions-btn {
    display: inline-block;
    background-color: #f5a623;
    color: #00112C;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: fit-content;
}

.web-hosting-solutions-btn:hover {
    background-color: #f7b84c;
    transform: translateY(-2px);
}

.web-hosting-solutions-item {
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1;
    transition: all 0.3s ease;
}

.web-hosting-solutions-item:hover {
    border-bottom-color: rgb(var(--color-primary-dark, 15, 189, 145));
}

.web-hosting-solutions-item a {
    text-decoration: none;
    color: #444444;
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
}

.web-hosting-solutions-item a:hover {
    color: rgb(var(--color-primary-dark, 15, 189, 145));
    transform: translateX(5px);
}

.web-hosting-solutions-item.active a {
    color: #00112C;
    font-weight: 600;
}

.web-hosting-solutions-contact {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.web-hosting-solutions-contact-text {
    display: inline-block;
    margin-right: 10px;
    color: #444;
    font-size: 18px;
}

.web-hosting-solutions-phone {
    display: inline-block;
    color: #2b87e3;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin: 0 5px;
}

.web-hosting-solutions-chat {
    display: inline-flex;
    align-items: center;
    background-color: #27ae60;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.web-hosting-solutions-chat:hover {
    background-color: #2cc36b;
    transform: translateY(-2px);
}

.web-hosting-solutions-chat-icon {
    margin-right: 5px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .web-hosting-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .web-hosting-solutions-links {
        grid-column: span 12;
        margin-bottom: 30px;
    }
    
    .web-hosting-solutions-card {
        grid-column: span 12;
    }
    
    .web-hosting-solutions-bg-text {
        font-size: 160px;
    }
}

@media (max-width: 768px) {
    .web-hosting-solutions-contact {
        text-align: center;
        padding: 15px;
    }
    
    .web-hosting-solutions-contact-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .web-hosting-solutions-contact-text, 
    .web-hosting-solutions-chat {
        margin: 5px 0;
    }
    
    .web-hosting-solutions-bg-text {
        font-size: 120px;
        top: -30px;
    }
    
    .web-hosting-solutions-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .web-hosting-solutions-section {
        padding: 50px 0;
    }
    
    .web-hosting-solutions-links {
        grid-template-columns: 1fr;
    }
    
    .web-hosting-solutions-bg-text {
        font-size: 80px;
        top: -10px;
    }
    
    .web-hosting-solutions-phone {
        display: block;
        margin: 10px 0;
    }
    
    .web-hosting-solutions-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}


/* ============================================================

   Cloud VPS Hosting - Premium Performance & Reliability
   
============================================================ */




/*-------------------------------Cloud VPS Hosting Section Styles---------------------------------------*/



.service-help-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.service-help-section::before {
    content: "SUPPORT";
    position: absolute;
    font-size: 320px;
    font-weight: 900;
    color: rgba(0, 33, 67, 0.03);
    top: -45px;
    left: 0;
    width: 100%;
    text-align: center;
    letter-spacing: 20px;
    z-index: 0;
    pointer-events: none;
}

.service-help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.service-help-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.service-help-title {
    font-size: 45px;
    font-weight: 700;
    color: #00112C;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.service-help-title::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: rgb(57, 239, 192);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.service-help-subtitle {
    font-size: 16px;
    color: #373737;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 30px;
}

.service-help-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-help-image {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.service-help-illustration {
    width: 100%;
    height: auto;
    border-radius: 8px;
    position: relative;
    box-shadow: -15px 15px 0px 0px rgb(15, 189, 145);
}

.service-help-illustration::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #0021435c;
    top: -15px;
    left: 15px;
    z-index: 2;
    border-radius: 8px;
}

.service-help-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-help-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: rgba(57, 239, 192, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(57, 239, 192, 0.1);
    transition: all 0.3s ease;
}

.service-help-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgb(15, 189, 145);
    background-color: rgba(57, 239, 192, 0.1);
}

.service-help-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-help-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.service-help-feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 10px;
}

.service-help-feature-text {
    font-size: 16px;
    color: #373737;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 992px) {
    .service-help-section::before {
        font-size: 220px;
    }
    
    .service-help-content {
        flex-direction: column;
    }
    
    .service-help-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .service-help-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .service-help-section {
        padding: 60px 0;
    }
    
    .service-help-section::before {
        font-size: 160px;
        top: 0;
    }
    
    .service-help-title {
        font-size: 32px;
    }
    
    .service-help-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-help-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .service-help-section {
        padding: 40px 0;
    }
    
    .service-help-section::before {
        font-size: 100px;
    }
    
    .service-help-title {
        font-size: 28px;
    }
    
    .service-help-subtitle {
        font-size: 15px;
    }
    
    .service-help-feature-title {
        font-size: 20px;
    }
    
    .service-help-feature-text {
        font-size: 15px;
    }
}

/* Animation effects */
.service-help-feature {
    position: relative;
    overflow: hidden;
}

.service-help-feature::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-help-feature:hover::after {
    opacity: 1;
    animation: service-help-shine 1.5s ease-in-out;
}

@keyframes service-help-shine {
    0% {
        left: -150%;
        opacity: 0;
    }
    100% {
        left: 100%;
        opacity: 0.3;
    }
}

/* Additional icon styles with theme colors */
.service-help-icon:nth-child(1) {
    background: linear-gradient(135deg, rgb(57, 239, 192), rgb(15, 189, 145));
}

.service-help-icon:nth-child(2) {
    background: linear-gradient(135deg, #4a0080, #0080ff);
}

.service-help-icon:nth-child(3) {
    background: linear-gradient(135deg, #002143, #0078FF);
}



/*-------------------What You Get With Your VPS Server Section--------------------------*/


/* What You Get Section Styles */
.what-you-get-vps-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.what-you-get-vps-section::before {
    content: "FEATURES";
    position: absolute;
    font-size: 280px;
    font-weight: 900;
    color: rgba(0, 33, 67, 0.03);
    top: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    letter-spacing: 15px;
    z-index: 0;
    pointer-events: none;
}

.what-you-get-vps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.what-you-get-vps-heading {
    text-align: center;
    margin-bottom: 60px;
}

.what-you-get-vps-title {
    font-size: 45px;
    font-weight: 600;
    color: #00112C;
    line-height: 1.2;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.what-you-get-vps-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, rgb(57, 239, 192), rgb(15, 189, 145));
    border-radius: 2px;
}

.what-you-get-vps-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.what-you-get-vps-feature {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 33, 67, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.what-you-get-vps-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(57, 239, 192, 0.3);
}

.what-you-get-vps-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b8efc;
    border-radius: 8px;
    overflow: hidden;
}

.what-you-get-vps-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.what-you-get-vps-content {
    flex-grow: 1;
}

.what-you-get-vps-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 10px;
}

.what-you-get-vps-feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #373737;
    margin: 0;
}

/* Icon colors - each feature gets a slightly different shade */
.what-you-get-vps-feature:nth-child(1) .what-you-get-vps-icon {
    background-color: #3b8efc;
}

.what-you-get-vps-feature:nth-child(2) .what-you-get-vps-icon {
    background-color: #3b8efc;
}

.what-you-get-vps-feature:nth-child(3) .what-you-get-vps-icon {
    background-color: #3b8efc;
}

.what-you-get-vps-feature:nth-child(4) .what-you-get-vps-icon {
    background-color: #3b8efc;
}

.what-you-get-vps-feature:nth-child(5) .what-you-get-vps-icon {
    background-color: #3b8efc;
}

.what-you-get-vps-feature:nth-child(6) .what-you-get-vps-icon {
    background-color: #3b8efc;
}

.what-you-get-vps-feature:nth-child(7) .what-you-get-vps-icon {
    background-color: #3b8efc;
}

.what-you-get-vps-feature:nth-child(8) .what-you-get-vps-icon {
    background-color: #3b8efc;
}

/* Add a shine effect on hover */
.what-you-get-vps-feature {
    position: relative;
    overflow: hidden;
}

.what-you-get-vps-feature::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.what-you-get-vps-feature:hover::after {
    opacity: 1;
    animation: what-you-get-vps-shine 1.5s ease-in-out;
}

@keyframes what-you-get-vps-shine {
    0% {
        left: -150%;
        opacity: 0;
    }
    100% {
        left: 100%;
        opacity: 0.3;
    }
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .what-you-get-vps-title {
        font-size: 38px;
    }
    
    .what-you-get-vps-section::before {
        font-size: 220px;
    }
}

@media screen and (max-width: 991px) {
    .what-you-get-vps-features {
        grid-template-columns: 1fr;
    }
    
    .what-you-get-vps-title {
        font-size: 34px;
    }
    
    .what-you-get-vps-section::before {
        font-size: 180px;
    }
}

@media screen and (max-width: 768px) {
    .what-you-get-vps-section {
        padding: 60px 0;
    }
    
    .what-you-get-vps-title {
        font-size: 30px;
    }
    
    .what-you-get-vps-feature {
        padding: 20px;
    }
    
    .what-you-get-vps-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .what-you-get-vps-icon-img {
        width: 25px;
        height: 25px;
    }
    
    .what-you-get-vps-feature-title {
        font-size: 18px;
    }
    
    .what-you-get-vps-feature-text {
        font-size: 15px;
    }
    
    .what-you-get-vps-section::before {
        font-size: 140px;
        top: -20px;
    }
}

@media screen and (max-width: 576px) {
    .what-you-get-vps-section {
        padding: 40px 0;
    }
    
    .what-you-get-vps-heading {
        margin-bottom: 40px;
    }
    
    .what-you-get-vps-title {
        font-size: 26px;
    }
    
    .what-you-get-vps-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .what-you-get-vps-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .what-you-get-vps-section::before {
        font-size: 100px;
        top: -10px;
    }
}


/*-------------------VPS Hosting Pricing Section--------------------------*/


 /* Main Container */
 .vps-hosting-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Element */
.vps-hosting-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(225, 235, 245, 0.8), rgba(225, 235, 245, 0.4));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}

/* Header Section */
.vps-hosting-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.vps-hosting-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.vps-hosting-header p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Locations */
.vps-hosting-locations {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vps-hosting-locations-title {
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.vps-hosting-location {
    width: 32px;
    height: 22px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vps-hosting-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.vps-hosting-location img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Table */
.vps-hosting-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.vps-hosting-pricing-table th {
    background-color: #f5f7fa;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #eaeaea;
}

.vps-hosting-pricing-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 14px;
    color: #555;
    transition: background-color 0.3s ease;
}

.vps-hosting-pricing-table tr:hover td {
    background-color: #f8f9fd;
}

.vps-hosting-pricing-table tr:last-child td {
    border-bottom: none;
}

/* Plan names */
.vps-hosting-plan {
    font-weight: 600;
    color: #2c3e50;
}

/* Specs styling */
.vps-hosting-specs {
    font-size: 12px;
    color: #888;
    display: block;
    margin-top: 3px;
}

/* Price column */
.vps-hosting-price {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.vps-hosting-discount {
    display: block;
    font-size: 12px;
    color: #4CAF50;
    margin-top: 4px;
}

/* Button styling */
.vps-hosting-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.vps-hosting-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

/* OS Icons */
.vps-hosting-os-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* IP and Bandwidth */
.vps-hosting-feature {
    color: #666;
}

.vps-hosting-feature-highlight {
    color: #333;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 992px) {
    .vps-hosting-pricing-table {
        width: 100%;
        overflow-x: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .vps-hosting-container {
        padding: 30px 15px;
    }

    .vps-hosting-header h1 {
        font-size: 28px;
    }

    .vps-hosting-table-wrapper {
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .vps-hosting-pricing-table {
        min-width: 700px;
    }
}

/* Add some animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vps-hosting-container {
    animation: fadeIn 0.8s ease-out;
}

/* Popular plan highlight */
.vps-hosting-popular {
    position: relative;
}

.vps-hosting-popular td {
    background-color: rgba(240, 249, 255, 0.7);
}

.vps-hosting-popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ff6b6b;
    color: white;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 0 0 10px 0;
    font-weight: 500;
    z-index: 1;
}

/* Tooltip for extra info */
.vps-hosting-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
    margin-left: 5px;
    color: #999;
}

.vps-hosting-tooltip:hover .vps-hosting-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.vps-hosting-tooltip-text {
    visibility: hidden;
    width: 180px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -90px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    line-height: 1.4;
}

.vps-hosting-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* New modern toggle for currency */
.vps-hosting-currency-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
}

.vps-hosting-currency-btn {
    padding: 8px 16px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.vps-hosting-currency-btn.active {
    background-color: #007bff;
    color: white;
}

/*--------------managed-vps-hosting--------------------------------*/

/* Main container */
.managed-vps-hosting-container {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 80px 20px;
    color: black;
}

/* Floating background elements */
.managed-vps-hosting-bg-element {
    position: absolute;
    opacity: 0.07;
    background-color: #fff;
    border-radius: 8px;
    transform: rotate(45deg);
    z-index: 1;
}

.managed-vps-hosting-bg-element-1 {
    width: 180px;
    height: 180px;
    top: 5%;
    left: 5%;
    animation: float 15s ease-in-out infinite;
}

.managed-vps-hosting-bg-element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 15%;
    animation: float 12s ease-in-out infinite 1s;
}

.managed-vps-hosting-bg-element-3 {
    width: 200px;
    height: 200px;
    top: 25%;
    right: 10%;
    animation: float 18s ease-in-out infinite 2s;
}

.managed-vps-hosting-bg-element-4 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    animation: float 14s ease-in-out infinite 3s;
}

@keyframes float {
    0% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(48deg) translate(15px, 15px); }
    100% { transform: rotate(45deg) translate(0, 0); }
}

/* Content wrapper */
.managed-vps-hosting-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header styles */
.managed-vps-hosting-header {
    text-align: center;
    margin-bottom: 60px;
}

.managed-vps-hosting-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #00112C;
}

.managed-vps-hosting-subtitle {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Features grid */
.managed-vps-hosting-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Feature item */
.managed-vps-hosting-feature {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 10px 0px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.managed-vps-hosting-feature:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.managed-vps-hosting-feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.managed-vps-hosting-feature-text {
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Column styles for visual grouping */
.managed-vps-hosting-column-1 .managed-vps-hosting-feature-icon {
    background-color: rgba(var(--color-primary), 0.3);
}

.managed-vps-hosting-column-2 .managed-vps-hosting-feature-icon {
    background-color: rgba(var(--color-primary-dark), 0.3);
}

.managed-vps-hosting-column-3 .managed-vps-hosting-feature-icon {
    background-color: rgba(var(--color-secondary), 0.3);
}

/* Animation for features */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation delay to features */
.managed-vps-hosting-column-1 .managed-vps-hosting-feature:nth-child(1) { animation-delay: 0.1s; }
.managed-vps-hosting-column-1 .managed-vps-hosting-feature:nth-child(2) { animation-delay: 0.2s; }
.managed-vps-hosting-column-1 .managed-vps-hosting-feature:nth-child(3) { animation-delay: 0.3s; }
.managed-vps-hosting-column-1 .managed-vps-hosting-feature:nth-child(4) { animation-delay: 0.4s; }
.managed-vps-hosting-column-1 .managed-vps-hosting-feature:nth-child(5) { animation-delay: 0.5s; }
.managed-vps-hosting-column-1 .managed-vps-hosting-feature:nth-child(6) { animation-delay: 0.6s; }
.managed-vps-hosting-column-1 .managed-vps-hosting-feature:nth-child(7) { animation-delay: 0.7s; }
.managed-vps-hosting-column-1 .managed-vps-hosting-feature:nth-child(8) { animation-delay: 0.8s; }

.managed-vps-hosting-column-2 .managed-vps-hosting-feature:nth-child(1) { animation-delay: 0.2s; }
.managed-vps-hosting-column-2 .managed-vps-hosting-feature:nth-child(2) { animation-delay: 0.3s; }
.managed-vps-hosting-column-2 .managed-vps-hosting-feature:nth-child(3) { animation-delay: 0.4s; }
.managed-vps-hosting-column-2 .managed-vps-hosting-feature:nth-child(4) { animation-delay: 0.5s; }
.managed-vps-hosting-column-2 .managed-vps-hosting-feature:nth-child(5) { animation-delay: 0.6s; }
.managed-vps-hosting-column-2 .managed-vps-hosting-feature:nth-child(6) { animation-delay: 0.7s; }
.managed-vps-hosting-column-2 .managed-vps-hosting-feature:nth-child(7) { animation-delay: 0.8s; }
.managed-vps-hosting-column-2 .managed-vps-hosting-feature:nth-child(8) { animation-delay: 0.9s; }

.managed-vps-hosting-column-3 .managed-vps-hosting-feature:nth-child(1) { animation-delay: 0.3s; }
.managed-vps-hosting-column-3 .managed-vps-hosting-feature:nth-child(2) { animation-delay: 0.4s; }
.managed-vps-hosting-column-3 .managed-vps-hosting-feature:nth-child(3) { animation-delay: 0.5s; }
.managed-vps-hosting-column-3 .managed-vps-hosting-feature:nth-child(4) { animation-delay: 0.6s; }
.managed-vps-hosting-column-3 .managed-vps-hosting-feature:nth-child(5) { animation-delay: 0.7s; }
.managed-vps-hosting-column-3 .managed-vps-hosting-feature:nth-child(6) { animation-delay: 0.8s; }
.managed-vps-hosting-column-3 .managed-vps-hosting-feature:nth-child(7) { animation-delay: 0.9s; }

/* Chat assistance button */
.managed-vps-hosting-chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgb(var(--color-primary));
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    animation: pulse 2s infinite;
}

.managed-vps-hosting-chat-button:hover {
    background-color: rgb(var(--color-primary-dark));
    transform: scale(1.05);
}

.managed-vps-hosting-chat-icon {
    font-size: 24px;
}

/* Add glow effect on feature hover */
.managed-vps-hosting-feature:hover .managed-vps-hosting-feature-icon {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Pulse animation for chat button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--color-primary), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--color-primary), 0);
    }
}

/* Enhanced background glow */
.managed-vps-hosting-container::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(rgba(var(--color-primary), 0.15), rgba(var(--color-primary), 0));
    border-radius: 50%;
    z-index: 0;
}

.managed-vps-hosting-container::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(rgba(var(--color-primary-dark), 0.1), rgba(var(--color-primary-dark), 0));
    border-radius: 50%;
    z-index: 0;
}

/* Glassmorphism effect for feature boxes */
@supports (backdrop-filter: blur(10px)) {
    .managed-vps-hosting-feature {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Enhanced responsive design */
@media (max-width: 1200px) {
    .managed-vps-hosting-content {
        max-width: 950px;
    }
}

@media (max-width: 1024px) {
    .managed-vps-hosting-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .managed-vps-hosting-column-3 {
        grid-column: span 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .managed-vps-hosting-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .managed-vps-hosting-container {
        padding: 60px 20px;
    }

    .managed-vps-hosting-title {
        font-size: 32px;
    }

    .managed-vps-hosting-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    .managed-vps-hosting-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .managed-vps-hosting-column-3 {
        grid-column: span 1;
        display: block;
    }
    
    .managed-vps-hosting-chat-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .managed-vps-hosting-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .managed-vps-hosting-container {
        padding: 40px 15px;
    }
    
    .managed-vps-hosting-title {
        font-size: 28px;
    }
    
    .managed-vps-hosting-subtitle {
        font-size: 14px;
    }

    .managed-vps-hosting-feature {
        padding: 15px;
    }

    .managed-vps-hosting-feature-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .managed-vps-hosting-feature-text {
        font-size: 14px;
    }
    
    .managed-vps-hosting-header {
        margin-bottom: 30px;
    }
}

/* Add feature clicked state for better touch feedback */
.managed-vps-hosting-feature-clicked {
    transform: scale(0.98);
    background-color: rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Enhanced accessibility */
.managed-vps-hosting-feature:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(var(--color-primary), 0.4);
}

.managed-vps-hosting-chat-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(var(--color-primary), 0.4);
}

/* Print styles for better documentation */
@media print {
    .managed-vps-hosting-container {
        background: white !important;
        color: black !important;
        padding: 20px !important;
    }
    
    .managed-vps-hosting-title {
        color: #00112C !important;
    }
    
    .managed-vps-hosting-bg-element,
    .managed-vps-hosting-chat-button {
        display: none !important;
    }
    
    .managed-vps-hosting-feature {
        page-break-inside: avoid;
        border: 1px solid #ccc !important;
        background: white !important;
        box-shadow: none !important;
    }
}

/*---------------------------------------
 🌿 Affordable Linux VPS - Stylish & Fast
------------------------------------------*/



/* VPS Provider Comparison Section Styles */
.affordable-vps-provider-comparison-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  }
  
  .affordable-vps-provider-comparison-section::before {
    content: "COMPARE";
    position: absolute;
    font-size: 280px;
    font-weight: 900;
    color: rgba(0, 33, 67, 0.03);
    top: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    letter-spacing: 15px;
    z-index: 0;
    pointer-events: none;
  }
  
  .affordable-vps-provider-comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .affordable-vps-provider-comparison-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .affordable-vps-provider-comparison-title {
    font-size: 45px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .affordable-vps-provider-comparison-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, rgb(57, 239, 192), rgb(15, 189, 145));
    border-radius: 2px;
  }
  
  .affordable-vps-provider-comparison-subtitle {
    font-size: 18px;
    color: #373737;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
  }
  
  .affordable-vps-provider-comparison-wrapper {
    position: relative;
    margin-bottom: 50px;
  }
  
  .affordable-vps-provider-comparison-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-primary)) transparent;
  }
  
  .affordable-vps-provider-comparison-scroller::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  .affordable-vps-provider-comparison-scroller::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .affordable-vps-provider-comparison-scroller::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-primary, 57, 239, 192));
    border-radius: 4px;
  }
  
  .affordable-vps-provider-comparison-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .affordable-vps-provider-comparison-feature-header {
    text-align: left;
    padding: 20px;
    background-color: #00112C;
    color: white;
    font-weight: 600;
    font-size: 18px;
    border-top-left-radius: 10px;
  }
  
  .affordable-vps-provider-comparison-provider {
    padding: 15px 10px;
    text-align: center;
    background-color: #00112C;
    color: white;
    font-weight: 600;
    vertical-align: middle;
  }
  
  .affordable-vps-provider-comparison-provider:last-child {
    border-top-right-radius: 10px;
  }
  
  .affordable-vps-provider-comparison-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: white;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 140px;
  }
  
  .affordable-vps-provider-comparison-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  
  .affordable-vps-provider-comparison-logo.eurohost-logo {
    background-color: transparent;
  }
  
  .affordable-vps-provider-comparison-logo.eurohost-logo img {
    filter: brightness(0) invert(1);
  }
  
  .affordable-vps-provider-comparison-row {
    transition: background-color 0.3s ease;
  }
  
  .affordable-vps-provider-comparison-row:nth-child(odd) {
    background-color: rgba(242, 242, 242, 0.5);
  }
  
  .affordable-vps-provider-comparison-row:hover {
    background-color: rgba(57, 239, 192, 0.05);
  }
  
  .affordable-vps-provider-comparison-feature {
    padding: 18px 20px;
    font-weight: 600;
    color: #00112C;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .affordable-vps-provider-comparison-value {
    padding: 18px 15px;
    text-align: center;
    color: #373737;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .affordable-vps-provider-comparison-value:last-child {
    border-right: none;
  }
  
  .affordable-vps-provider-comparison-highlight {
    font-weight: 700;
    color: rgb(15, 189, 145);
    position: relative;
  }
  
  .affordable-vps-provider-comparison-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: rgb(57, 239, 192);
  }
  
  .affordable-vps-provider-comparison-price-row .affordable-vps-provider-comparison-value {
    font-size: 20px;
    font-weight: 700;
    color: #00112C;
  }
  
  .affordable-vps-provider-comparison-price-row .affordable-vps-provider-comparison-highlight {
    color: rgb(15, 189, 145);
    font-weight: 800;
  }
  
  .affordable-vps-provider-comparison-currency {
    font-size: 16px;
    vertical-align: top;
  }
  
  .affordable-vps-provider-comparison-cta {
    text-align: center;
    margin-top: 40px;
  }
  
  .affordable-vps-provider-comparison-cta-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #373737;
  }
  
  .affordable-vps-provider-comparison-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgb(57, 239, 192);
    color: #00112C;
    border: 2px solid rgb(57, 239, 192);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .affordable-vps-provider-comparison-btn:hover {
    background-color: rgb(15, 189, 145);
    border-color: rgb(15, 189, 145);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 239, 192, 0.3);
  }
  
  /* Responsive styles */
  @media screen and (max-width: 1024px) {
    .affordable-vps-provider-comparison-title {
      font-size: 38px;
    }
    
    .affordable-vps-provider-comparison-section::before {
      font-size: 220px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .affordable-vps-provider-comparison-section {
      padding: 60px 0;
    }
    
    .affordable-vps-provider-comparison-title {
      font-size: 32px;
    }
    
    .affordable-vps-provider-comparison-subtitle {
      font-size: 16px;
    }
    
    .affordable-vps-provider-comparison-section::before {
      font-size: 160px;
      top: -20px;
    }
    
    /* Add horizontal scroll indicator */
    .affordable-vps-provider-comparison-wrapper::after {
      content: "← Scroll →";
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      color: #666;
      white-space: nowrap;
    }
  }
  
  @media screen and (max-width: 576px) {
    .affordable-vps-provider-comparison-section {
      padding: 40px 0;
    }
    
    .affordable-vps-provider-comparison-title {
      font-size: 28px;
    }
    
    .affordable-vps-provider-comparison-subtitle {
      font-size: 15px;
    }
    
    .affordable-vps-provider-comparison-section::before {
      font-size: 100px;
      top: -10px;
    }
    
    .affordable-vps-provider-comparison-logo {
      height: 40px;
    }
    
    .affordable-vps-provider-comparison-price-row .affordable-vps-provider-comparison-value {
      font-size: 18px;
    }
  }

/*--------------------------------experience-vps-hosting-----------------------------*/

/* Experience VPS Hosting Section */
.affordable-experience-vps-hosting-section {
    padding: 60px 0;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  }
  
  .affordable-experience-vps-hosting-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .affordable-experience-vps-hosting-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .affordable-experience-vps-hosting-title {
    font-size: 36px;
    font-weight: 700;
    color: #00112C;
    margin-bottom: 15px;
  }
  
  .affordable-experience-vps-hosting-subtitle {
    font-size: 16px;
    color: #373737;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  /* Row layout */
  .affordable-experience-vps-hosting-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  /* Card styles */
  .affordable-experience-vps-hosting-card {
    padding: 30px;
    border-radius: 15px;
    background-color: #e6f7ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .affordable-experience-vps-hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .affordable-experience-vps-hosting-wide {
    flex: 2;
  }
  
  .affordable-experience-vps-hosting-narrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .affordable-experience-vps-hosting-green {
    background-color: rgba(57, 239, 192, 0.1);
  }
  
  .affordable-experience-vps-hosting-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 15px;
  }
  
  .affordable-experience-vps-hosting-card-text {
    font-size: 16px;
    line-height: 1.5;
    color: #373737;
    margin: 0;
  }
  
  .affordable-experience-vps-hosting-text-center {
    text-align: center;
  }
  
  .affordable-experience-vps-hosting-icon-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .affordable-experience-vps-hosting-icon {
    width: 50px;
    height: 50px;
    stroke: #002143;
    color: #002143;
  }
  
  .affordable-experience-vps-hosting-underline {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 5px;
    font-weight: 500;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .affordable-experience-vps-hosting-row {
      flex-wrap: wrap;
    }
    
    .affordable-experience-vps-hosting-wide {
      flex: 1 1 calc(50% - 20px);
      min-width: 250px;
    }
    
    .affordable-experience-vps-hosting-narrow {
      flex: 1 1 calc(33% - 20px);
      min-width: 150px;
    }
  }
  
  @media (max-width: 767px) {
    .affordable-experience-vps-hosting-row {
      flex-direction: column;
    }
    
    .affordable-experience-vps-hosting-wide,
    .affordable-experience-vps-hosting-narrow {
      width: 100%;
    }
    
    .affordable-experience-vps-hosting-card {
      padding: 20px;
    }
    
    .affordable-experience-vps-hosting-title {
      font-size: 28px;
    }
  }
  
  @media (max-width: 480px) {
    .affordable-experience-vps-hosting-card {
      padding: 20px 15px;
    }
    
    .affordable-experience-vps-hosting-title {
      font-size: 24px;
    }
    
    .affordable-experience-vps-hosting-subtitle {
      font-size: 14px;
    }
  }


/*---------------------------------------vps-hosting-use-cases-section------------------------------------*/


/* VPS Hosting Use Cases Section */
.affordable-vps-hosting-use-cases-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
    position: relative;
    overflow: hidden;
  }
  
  .affordable-vps-hosting-use-cases-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 25%, rgba(57, 239, 192, 0.03) 0%, transparent 20%),
                       radial-gradient(circle at 80% 75%, rgba(15, 189, 145, 0.03) 0%, transparent 20%);
    z-index: 0;
  }
  
  .affordable-vps-hosting-use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .affordable-vps-hosting-use-cases-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }
  
  .affordable-vps-hosting-use-cases-title {
    font-size: 40px;
    font-weight: 700;
    color: #00112C;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
  }
  
  .affordable-vps-hosting-use-cases-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, rgb(57, 239, 192), rgb(15, 189, 145));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  /* Use Case Items */
  .affordable-vps-hosting-use-cases-item {
    margin-bottom: 80px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .affordable-vps-hosting-use-cases-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .affordable-vps-hosting-use-cases-content {
    display: flex;
    flex-wrap: wrap;
  }
  
  .affordable-vps-hosting-use-cases-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
  }
  
  .affordable-vps-hosting-use-cases-image {
    flex: 1;
    min-width: 300px;
    position: relative;
  }
  
  .affordable-vps-hosting-use-cases-image-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .affordable-vps-hosting-use-cases-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .affordable-vps-hosting-use-cases-reversed .affordable-vps-hosting-use-cases-info {
    order: 2;
  }
  
  .affordable-vps-hosting-use-cases-reversed .affordable-vps-hosting-use-cases-image {
    order: 1;
  }
  
  .affordable-vps-hosting-use-cases-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 15px;
  }
  
  .affordable-vps-hosting-use-cases-text {
    font-size: 16px;
    color: #373737;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .affordable-vps-hosting-use-cases-text:last-child {
    margin-bottom: 0;
  }
  
  /* Badge styling */
  .affordable-vps-hosting-use-cases-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #00112C;
    font-weight: 500;
    border-left: 3px solid rgb(57, 239, 192);
  }
  
  .affordable-vps-hosting-use-cases-badge span {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .affordable-vps-hosting-use-cases-badge img {
    width: 24px;
    height: 24px;
  }
  
  .affordable-vps-hosting-use-cases-badge-alt {
    left: auto;
    right: 20px;
    border-left: none;
    border-right: 3px solid rgb(57, 239, 192);
  }
  
  .affordable-vps-hosting-use-cases-percentage {
    font-size: 24px;
    font-weight: 700;
    color: rgb(15, 189, 145);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
  }
  
  .affordable-vps-hosting-use-cases-percentage small {
    font-size: 12px;
    font-weight: 400;
    color: #666;
  }
  
  /* CTA section */
  .affordable-vps-hosting-use-cases-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #002143, #001733);
    border-radius: 16px;
    margin-top: 40px;
    color: white;
  }
  
  .affordable-vps-hosting-use-cases-cta-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
  }
  
  .affordable-vps-hosting-use-cases-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .affordable-vps-hosting-use-cases-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, rgb(57, 239, 192), rgb(15, 189, 145));
    color: #00112C;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(57, 239, 192, 0.3);
  }
  
  .affordable-vps-hosting-use-cases-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 239, 192, 0.4);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .affordable-vps-hosting-use-cases-content {
      flex-direction: column;
    }
    
    .affordable-vps-hosting-use-cases-info,
    .affordable-vps-hosting-use-cases-image {
      width: 100%;
    }
    
    .affordable-vps-hosting-use-cases-image {
      min-height: 300px;
    }
    
    .affordable-vps-hosting-use-cases-reversed .affordable-vps-hosting-use-cases-info,
    .affordable-vps-hosting-use-cases-reversed .affordable-vps-hosting-use-cases-image {
      order: 0;
    }
    
    .affordable-vps-hosting-use-cases-title {
      font-size: 32px;
    }
    
    .affordable-vps-hosting-use-cases-subtitle {
      font-size: 22px;
    }
  }
  
  @media (max-width: 768px) {
    .affordable-vps-hosting-use-cases-section {
      padding: 60px 0;
    }
    
    .affordable-vps-hosting-use-cases-info {
      padding: 30px;
    }
    
    .affordable-vps-hosting-use-cases-title {
      font-size: 28px;
    }
    
    .affordable-vps-hosting-use-cases-subtitle {
      font-size: 20px;
    }
    
    .affordable-vps-hosting-use-cases-cta {
      padding: 30px;
    }
    
    .affordable-vps-hosting-use-cases-cta-title {
      font-size: 24px;
    }
    
    .affordable-vps-hosting-use-cases-cta-text {
      font-size: 16px;
    }
  }
  
  @media (max-width: 576px) {
    .affordable-vps-hosting-use-cases-section {
      padding: 40px 0;
    }
    
    .affordable-vps-hosting-use-cases-info {
      padding: 25px 20px;
    }
    
    .affordable-vps-hosting-use-cases-title {
      font-size: 24px;
    }
    
    .affordable-vps-hosting-use-cases-subtitle {
      font-size: 18px;
    }
    
    .affordable-vps-hosting-use-cases-text {
      font-size: 15px;
    }
    
    .affordable-vps-hosting-use-cases-image {
      min-height: 250px;
    }
    
    .affordable-vps-hosting-use-cases-badge {
      left: 10px;
      bottom: 10px;
      padding: 8px 12px;
      font-size: 12px;
    }
    
    .affordable-vps-hosting-use-cases-badge-alt {
      left: auto;
      right: 10px;
    }
    
    .affordable-vps-hosting-use-cases-cta {
      padding: 25px 20px;
    }
    
    .affordable-vps-hosting-use-cases-cta-title {
      font-size: 20px;
    }
    
    .affordable-vps-hosting-use-cases-cta-text {
      font-size: 14px;
      margin-bottom: 20px;
    }
    
    .affordable-vps-hosting-use-cases-cta-button {
      width: 100%;
      padding: 12px 20px;
      font-size: 15px;
    }
  }


/*---------------------------------------vps-hosting-solutions------------------------------------*/  

/* VPS Hosting Solutions Section */
.affordable-vps-hosting-solutions-section {
    padding: 60px 0;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  }
  
  .affordable-vps-hosting-solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .affordable-vps-hosting-solutions-title {
    font-size: 32px;
    font-weight: 700;
    color: #00112C;
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* Grid layout */
  .affordable-vps-hosting-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
  }
  
  /* Card general styles */
  .affordable-vps-hosting-solutions-card {
    border-radius: 8px;
    overflow: hidden;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #e6f7ff;
  }
  
  .affordable-vps-hosting-solutions-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Card sizes and layouts */
  .affordable-vps-hosting-solutions-cyber {
    grid-column: 1 / 2;
    grid-row: 1;
  }
  
  .affordable-vps-hosting-solutions-dedicated {
    grid-column: 2 / 3;
    grid-row: 1;
  }
  
  .affordable-vps-hosting-solutions-technicians {
    grid-column: 3 / 4;
    grid-row: 1;
    background-color: #333;
    padding: 0;
    min-height: 240px;
  }
  
  .affordable-vps-hosting-solutions-windows {
    grid-column: 1 / 2;
    grid-row: 2;
    background-color: #007bff;
    color: white;
  }
  
  .affordable-vps-hosting-solutions-forex {
    grid-column: 2 / 3;
    grid-row: 2;
  }
  
  .affordable-vps-hosting-solutions-server-room {
    grid-column: 3 / 4;
    grid-row: 2;
    background-color: #1e5999;
    padding: 0;
    min-height: 280px;
  }
  
  .affordable-vps-hosting-solutions-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .affordable-vps-hosting-solutions-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-weight: 500;
    font-size: 18px;
  }
  
  /* Icon styles */
  .affordable-vps-hosting-solutions-icon-wrapper {
    margin-bottom: 15px;
  }
  
  .affordable-vps-hosting-solutions-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: white;
  }
  
  .affordable-vps-hosting-solutions-windows .affordable-vps-hosting-solutions-icon {
    background-color: #007bff;
  }
  
  /* Card content */
  .affordable-vps-hosting-solutions-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00112C;
  }
  
  .affordable-vps-hosting-solutions-windows .affordable-vps-hosting-solutions-card-title {
    color: white;
  }
  
  .affordable-vps-hosting-solutions-card-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #373737;
  }
  
  .affordable-vps-hosting-solutions-windows .affordable-vps-hosting-solutions-card-description {
    color: white;
  }
  
  .affordable-vps-hosting-solutions-price {
    font-size: 14px;
    color: #00112C;
  }
  
  .affordable-vps-hosting-solutions-windows .affordable-vps-hosting-solutions-price {
    color: white;
  }
  
  .affordable-vps-hosting-solutions-price-value {
    font-size: 18px;
    font-weight: 700;
  }
  
  .affordable-vps-hosting-solutions-price-period {
    font-size: 14px;
  }
  
  /* Popular tag */
  .affordable-vps-hosting-solutions-popular-tag {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: #39efc0;
    color: #00112C;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 0 0 6px 6px;
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .affordable-vps-hosting-solutions-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .affordable-vps-hosting-solutions-cyber {
      grid-column: 1 / 2;
      grid-row: 1;
    }
    
    .affordable-vps-hosting-solutions-dedicated {
      grid-column: 2 / 3;
      grid-row: 1;
    }
    
    .affordable-vps-hosting-solutions-technicians {
      grid-column: 1 / 2;
      grid-row: 2;
    }
    
    .affordable-vps-hosting-solutions-windows {
      grid-column: 2 / 3;
      grid-row: 2;
    }
    
    .affordable-vps-hosting-solutions-forex {
      grid-column: 1 / 2;
      grid-row: 3;
    }
    
    .affordable-vps-hosting-solutions-server-room {
      grid-column: 2 / 3;
      grid-row: 3;
    }
  }
  
  @media (max-width: 768px) {
    .affordable-vps-hosting-solutions-grid {
      grid-template-columns: 1fr;
    }
    
    .affordable-vps-hosting-solutions-cyber,
    .affordable-vps-hosting-solutions-dedicated,
    .affordable-vps-hosting-solutions-technicians,
    .affordable-vps-hosting-solutions-windows,
    .affordable-vps-hosting-solutions-forex,
    .affordable-vps-hosting-solutions-server-room {
      grid-column: 1;
    }
    
    .affordable-vps-hosting-solutions-cyber {
      grid-row: 1;
    }
    
    .affordable-vps-hosting-solutions-dedicated {
      grid-row: 2;
    }
    
    .affordable-vps-hosting-solutions-technicians {
      grid-row: 3;
    }
    
    .affordable-vps-hosting-solutions-windows {
      grid-row: 4;
    }
    
    .affordable-vps-hosting-solutions-forex {
      grid-row: 5;
    }
    
    .affordable-vps-hosting-solutions-server-room {
      grid-row: 6;
    }
    
    .affordable-vps-hosting-solutions-image {
      height: 200px;
    }
  }
  

  /*---------------------------------------add-ons for your dedicated server------------------------------------*/

  .add-ons-for-your-dedicated-server-section {
    padding: 80px 0;
    background-color: #f8fbff;
    position: relative;
    overflow: hidden;
  }
  
  /* Add a subtle background pattern for more visual interest */
  .add-ons-for-your-dedicated-server-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e0eeff 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
  }
  
  .add-ons-for-your-dedicated-server-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  
  .add-ons-for-your-dedicated-server-title {
    font-size: 42px;
    font-weight: 700;
    color: #00112C;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  /* Add underline animation on hover */
  .add-ons-for-your-dedicated-server-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgb(57, 239, 192), rgb(15, 189, 145));
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  
  .add-ons-for-your-dedicated-server-title:hover::after {
    width: 120px;
  }
  
  .add-ons-for-your-dedicated-server-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  
  .add-ons-for-your-dedicated-server-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .add-ons-for-your-dedicated-server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(57, 239, 192, 0.3);
  }
  
  .add-ons-for-your-dedicated-server-card-content {
    padding: 25px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .add-ons-for-your-dedicated-server-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
  }
  
  /* Add line under card titles */
  .add-ons-for-your-dedicated-server-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, rgb(57, 239, 192), rgb(15, 189, 145));
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  
  .add-ons-for-your-dedicated-server-card:hover .add-ons-for-your-dedicated-server-card-title::after {
    width: 60px;
  }
  
  .add-ons-for-your-dedicated-server-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #373737;
    flex-grow: 1;
  }
  
  .add-ons-for-your-dedicated-server-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .add-ons-for-your-dedicated-server-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .add-ons-for-your-dedicated-server-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #002143;
  }
  
  .add-ons-for-your-dedicated-server-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.85;
  }
  
  .add-ons-for-your-dedicated-server-image-container:hover .add-ons-for-your-dedicated-server-image {
    transform: scale(1.05);
    opacity: 0.9;
  }
  
  .add-ons-for-your-dedicated-server-image-caption {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #002143;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .add-ons-for-your-dedicated-server-icon-row {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
  }
  
  .add-ons-for-your-dedicated-server-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .add-ons-for-your-dedicated-server-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background-color: white;
  }
  
  .add-ons-for-your-dedicated-server-icon i {
    font-size: 20px;
    color: #002143;
  }
  
  /* Add highlight animations for even more visual interest */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(57, 239, 192, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(57, 239, 192, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 239, 192, 0); }
  }
  
  .add-ons-for-your-dedicated-server-card:hover .add-ons-for-your-dedicated-server-card-title {
    color: rgb(15, 189, 145);
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 992px) {
    .add-ons-for-your-dedicated-server-grid {
      grid-template-columns: 1fr;
    }
    
    .add-ons-for-your-dedicated-server-title {
      font-size: 36px;
    }
    
    .add-ons-for-your-dedicated-server-image-container {
      min-height: 300px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .add-ons-for-your-dedicated-server-section {
      padding: 60px 0;
    }
    
    .add-ons-for-your-dedicated-server-title {
      font-size: 32px;
    }
    
    .add-ons-for-your-dedicated-server-card-title {
      font-size: 22px;
    }
    
    .add-ons-for-your-dedicated-server-card-text {
      font-size: 15px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .add-ons-for-your-dedicated-server-section {
      padding: 40px 0;
    }
    
    .add-ons-for-your-dedicated-server-title {
      font-size: 28px;
    }
    
    .add-ons-for-your-dedicated-server-header {
      margin-bottom: 40px;
    }
    
    .add-ons-for-your-dedicated-server-card-content {
      padding: 20px;
    }
    
    .add-ons-for-your-dedicated-server-image-container {
      min-height: 250px;
    }
    
    .add-ons-for-your-dedicated-server-card-title {
      font-size: 20px;
    }
  }
  .dedicated-powerful-control-panels {
    padding: 80px 0;
    background-color: #f8fbff;
    position: relative;
    overflow: hidden;
  }
  
  /* Add subtle background pattern */
  .dedicated-powerful-control-panels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e0eeff 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
  }
  
  .dedicated-powerful-control-panels-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .dedicated-powerful-control-panels-title {
    font-size: 36px;
    font-weight: 700;
    color: #00112C;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
  }
  
  /* Add underline animation on hover */
  .dedicated-powerful-control-panels-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #39EFC0, #0FBD91);
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  
  .dedicated-powerful-control-panels-title:hover::after {
    width: 120px;
  }
  
  .dedicated-powerful-control-panels-subtitle {
    font-size: 16px;
    color: #373737;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
  }
  
  .dedicated-powerful-control-panels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .dedicated-powerful-control-panels-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
  }
  
  .dedicated-powerful-control-panels-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(57, 239, 192, 0.3);
  }
  
  /* Add hover highlight glow */
  .dedicated-powerful-control-panels-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #39EFC0, #0FBD91);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .dedicated-powerful-control-panels-card:hover::before {
    transform: scaleX(1);
  }
  
  .dedicated-powerful-control-panels-card-header {
    padding: 25px 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .dedicated-powerful-control-panels-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #00112C;
    margin: 0;
  }
  
  .dedicated-powerful-control-panels-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dedicated-powerful-control-panels-icon {
    max-width: 100%;
    max-height: 100%;
  }
  
  .dedicated-powerful-control-panels-card-content {
    padding: 20px;
    flex-grow: 1;
  }
  
  .dedicated-powerful-control-panels-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .dedicated-powerful-control-panels-list-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
  }
  
  .dedicated-powerful-control-panels-list-item:last-child {
    border-bottom: none;
  }
  
  .dedicated-powerful-control-panels-list-item:hover {
    background-color: rgba(57, 239, 192, 0.05);
    transform: translateX(5px);
  }
  
  .dedicated-powerful-control-panels-check {
    color: #0FBD91;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
  }
  
  .dedicated-powerful-control-panels-feature {
    flex-grow: 1;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
  }
  
  .dedicated-powerful-control-panels-subdomain {
    font-size: 13px;
    color: #777;
    display: block;
  }
  
  .dedicated-powerful-control-panels-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #777;
    font-size: 12px;
    margin-left: 8px;
    cursor: help;
    position: relative;
  }
  
  .dedicated-powerful-control-panels-info:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  
  .dedicated-powerful-control-panels-info:hover::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    z-index: 10;
  }
  
  .dedicated-powerful-control-panels-price {
    font-weight: 700;
    font-size: 18px;
    color: #00112C;
    white-space: nowrap;
    margin-left: 10px;
  }
  
  .dedicated-powerful-control-panels-period {
    font-size: 14px;
    font-weight: normal;
    color: #777;
  }
  
  .dedicated-powerful-control-panels-card-footer {
    padding: 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .dedicated-powerful-control-panels-btn {
    padding: 12px 24px;
    background-color: transparent;
    color: #00112C;
    border: 2px solid #00112C;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }
  
  .dedicated-powerful-control-panels-btn:hover {
    background-color: #39EFC0;
    border-color: #39EFC0;
    color: #00112C;
    transform: translateY(-2px);
  }
  
  .dedicated-powerful-control-panels-compare {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .dedicated-powerful-control-panels-compare-btn {
    padding: 12px 30px;
    background-color: transparent;
    color: #0FBD91;
    border: 1px solid #0FBD91;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
  }
  
  .dedicated-powerful-control-panels-compare-btn:hover {
    background-color: rgba(15, 189, 145, 0.1);
    transform: translateY(-2px);
  }
  
  .dedicated-powerful-control-panels-compare-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .dedicated-powerful-control-panels-compare-btn:hover::after {
    transform: translateX(5px);
  }
  
  /* Add selected states */
  .dedicated-powerful-control-panels-card.selected {
    border-color: #0FBD91;
    box-shadow: 0 5px 30px rgba(15, 189, 145, 0.3);
  }
  
  .dedicated-powerful-control-panels-card.selected::before {
    transform: scaleX(1);
  }
  
  .dedicated-powerful-control-panels-card.selected .dedicated-powerful-control-panels-btn {
    background-color: #39EFC0;
    border-color: #39EFC0;
    color: #00112C;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .dedicated-powerful-control-panels-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .dedicated-powerful-control-panels-card[data-panel="plesk"] {
      grid-column: 1 / 3;
    }
  }
  
  @media (max-width: 768px) {
    .dedicated-powerful-control-panels {
      padding: 60px 0;
    }
    
    .dedicated-powerful-control-panels-title {
      font-size: 32px;
    }
    
    .dedicated-powerful-control-panels-grid {
      grid-template-columns: 1fr;
    }
    
    .dedicated-powerful-control-panels-card[data-panel="plesk"] {
      grid-column: auto;
    }
    
    .dedicated-powerful-control-panels-card-header {
      padding: 20px 15px 10px;
    }
    
    .dedicated-powerful-control-panels-card-content {
      padding: 15px;
    }
    
    .dedicated-powerful-control-panels-card-footer {
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .dedicated-powerful-control-panels {
      padding: 40px 0;
    }
    
    .dedicated-powerful-control-panels-title {
      font-size: 28px;
    }
    
    .dedicated-powerful-control-panels-subtitle {
      font-size: 15px;
      margin-bottom: 30px;
    }
    
    .dedicated-powerful-control-panels-list-item {
      flex-wrap: wrap;
    }
    
    .dedicated-powerful-control-panels-price {
      margin-left: 25px;
      margin-top: 8px;
    }
    
    .dedicated-powerful-control-panels-btn,
    .dedicated-powerful-control-panels-compare-btn {
      font-size: 14px;
      padding: 10px 20px;
    }
  }

    /*---------------------------------------popular-use-scenarios-section------------------------------------*/

    .dedicated-popular-use-scenarios-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
        font-family: var(--font-primary, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
      }
      
      /* Add a subtle background pattern for more visual interest */
      .dedicated-popular-use-scenarios-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
          linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
          linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
          linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
          linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
        background-size: 20px 20px;
        background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
        opacity: 0.4;
        z-index: 0;
      }
      
      .dedicated-popular-use-scenarios-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
      }
      
      .dedicated-popular-use-scenarios-title {
        font-size: 36px;
        font-weight: 700;
        color: #00112C;
        text-align: center;
        margin-bottom: 50px;
        position: relative;
      }
      
      /* Add underline animation */
      .dedicated-popular-use-scenarios-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #39efc0, #0fbd91);
        border-radius: 2px;
        transition: width 0.3s ease;
      }
      
      .dedicated-popular-use-scenarios-title:hover::after {
        width: 120px;
      }
      
      .dedicated-popular-use-scenarios-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 40px;
      }
      
      .dedicated-popular-use-scenarios-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        position: relative;
        height: 100%;
      }
      
      .dedicated-popular-use-scenarios-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      }
      
      .dedicated-popular-use-scenarios-card-with-image {
        grid-row: span 1;
      }
      
      .dedicated-popular-use-scenarios-card-wide {
        grid-row: span 1;
        grid-column: span 1;
      }
      
      /* Media query to make cards span full width on smaller screens */
      @media (max-width: 992px) {
        .dedicated-popular-use-scenarios-grid {
          grid-template-columns: 1fr;
        }
        
        .dedicated-popular-use-scenarios-card-wide {
          grid-column: span 1;
        }
      }
      
      .dedicated-popular-use-scenarios-card-reverse {
        flex-direction: row-reverse;
      }
      
      .dedicated-popular-use-scenarios-image-container {
        flex: 1;
        position: relative;
        overflow: hidden;
        min-height: 300px;
      }
      
      .dedicated-popular-use-scenarios-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      
      .dedicated-popular-use-scenarios-card:hover .dedicated-popular-use-scenarios-image {
        transform: scale(1.05);
      }
      
      .dedicated-popular-use-scenarios-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 33, 67, 0.7), rgba(0, 33, 67, 0.3));
        z-index: 1;
      }
      
      .dedicated-popular-use-scenarios-card-reverse .dedicated-popular-use-scenarios-image-overlay {
        background: linear-gradient(to left, rgba(0, 33, 67, 0.7), rgba(0, 33, 67, 0.3));
      }
      
      .dedicated-popular-use-scenarios-content {
        flex: 1;
        padding: 30px;
        display: flex;
        flex-direction: column;
      }
      
      /* Color themes for different cards */
      .dedicated-popular-use-scenarios-blue {
        background-color: #e8f4fe;
      }
      
      .dedicated-popular-use-scenarios-green {
        background-color: #e8fcf1;
      }
      
      .dedicated-popular-use-scenarios-purple {
        background-color: #f0ebff;
      }
      
      .dedicated-popular-use-scenarios-blue-light {
        background-color: #e1f5fe;
      }
      
      .dedicated-popular-use-scenarios-card-title {
        font-size: 22px;
        font-weight: 600;
        color: #00112C;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 10px;
      }
      
      .dedicated-popular-use-scenarios-card-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #39efc0, #0fbd91);
        border-radius: 2px;
        transition: width 0.3s ease;
      }
      
      .dedicated-popular-use-scenarios-card:hover .dedicated-popular-use-scenarios-card-title::after {
        width: 60px;
      }
      
      .dedicated-popular-use-scenarios-card-text {
        font-size: 16px;
        line-height: 1.6;
        color: #444;
        margin-bottom: 20px;
        flex-grow: 1;
      }
      
      .dedicated-popular-use-scenarios-highlight {
        color: #0fbd91;
        font-weight: 600;
        position: relative;
        display: inline-block;
      }
      
      /* Subtle underline effect for highlighted text */
      .dedicated-popular-use-scenarios-highlight::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: rgba(15, 189, 145, 0.3);
        transition: all 0.3s ease;
      }
      
      .dedicated-popular-use-scenarios-card:hover .dedicated-popular-use-scenarios-highlight::after {
        height: 6px;
        bottom: -3px;
        opacity: 0.2;
      }
      
      .dedicated-popular-use-scenarios-icon-row {
        display: flex;
        gap: 15px;
        margin-top: auto;
      }
      
      .dedicated-popular-use-scenarios-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
      }
      
      .dedicated-popular-use-scenarios-icon i {
        font-size: 18px;
        color: #00112C;
        transition: all 0.3s ease;
      }
      
      .dedicated-popular-use-scenarios-card:hover .dedicated-popular-use-scenarios-icon {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
      }
      
      .dedicated-popular-use-scenarios-card:hover .dedicated-popular-use-scenarios-icon i {
        color: #0fbd91;
      }
      
      /* CTA Button styling */
      .dedicated-popular-use-scenarios-cta {
        display: flex;
        justify-content: center;
        margin-top: 30px;
      }
      
      .dedicated-popular-use-scenarios-button {
        padding: 14px 28px;
        background-color: #00112C;
        color: white;
        font-weight: 600;
        font-size: 16px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid #00112C;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }
      
      .dedicated-popular-use-scenarios-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.7s ease;
        z-index: -1;
      }
      
      .dedicated-popular-use-scenarios-button:hover {
        background-color: #0fbd91;
        border-color: #0fbd91;
        color: #00112C;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(15, 189, 145, 0.3);
      }
      
      .dedicated-popular-use-scenarios-button:hover::before {
        left: 100%;
      }
      
      /* Responsive styles */
      @media (max-width: 768px) {
        .dedicated-popular-use-scenarios-section {
          padding: 60px 0;
        }
        
        .dedicated-popular-use-scenarios-title {
          font-size: 30px;
          margin-bottom: 40px;
        }
        
        .dedicated-popular-use-scenarios-card {
          flex-direction: column;
        }
        
        .dedicated-popular-use-scenarios-card-reverse {
          flex-direction: column;
        }
        
        .dedicated-popular-use-scenarios-image-container {
          height: 220px;
        }
        
        .dedicated-popular-use-scenarios-content {
          padding: 25px;
        }
        
        .dedicated-popular-use-scenarios-card-title {
          font-size: 20px;
        }
        
        .dedicated-popular-use-scenarios-card-text {
          font-size: 15px;
        }
        
        .dedicated-popular-use-scenarios-button {
          padding: 12px 24px;
          font-size: 15px;
        }
      }
      
      @media (max-width: 576px) {
        .dedicated-popular-use-scenarios-section {
          padding: 40px 0;
        }
        
        .dedicated-popular-use-scenarios-title {
          font-size: 26px;
        }
        
        .dedicated-popular-use-scenarios-content {
          padding: 20px;
        }
        
        .dedicated-popular-use-scenarios-card-title {
          font-size: 18px;
        }
        
        .dedicated-popular-use-scenarios-card-text {
          font-size: 14px;
          margin-bottom: 15px;
        }
        
        .dedicated-popular-use-scenarios-icon {
          width: 35px;
          height: 35px;
        }
        
        .dedicated-popular-use-scenarios-icon i {
          font-size: 16px;
        }
        
        .dedicated-popular-use-scenarios-button {
          width: 100%;
          text-align: center;
        }
      }


      /* ================================
   INSTANT DEDICATED SERVER MIGRATION SECTION
   ================================ */

/* Server Migration Section Styles */
.instant-dedicated-migration-section {
  background: linear-gradient(135deg, #4285f4, #34a0ff);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.instant-dedicated-migration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 1;
}

.instant-dedicated-migration-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.instant-dedicated-migration-content {
  flex: 1;
  padding-right: 40px;
  max-width: 600px;
}

.instant-dedicated-migration-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.instant-dedicated-migration-title span {
  display: block;
  position: relative;
}

.instant-dedicated-migration-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #ffd54f;
  border-radius: 2px;
}

.instant-dedicated-migration-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.instant-dedicated-migration-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.instant-dedicated-migration-feature {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.instant-dedicated-migration-icon {
  color: #ffd54f;
  font-size: 18px;
  margin-right: 8px;
}

.instant-dedicated-migration-feature span {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.instant-dedicated-migration-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background-color: #ffd54f;
  color: #00112C;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.instant-dedicated-migration-cta:hover {
  background-color: #fff;
  color: #00112C;
  border-color: #ffd54f;
}

.instant-dedicated-migration-cta i {
  margin-left: 8px;
}

.instant-dedicated-migration-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instant-dedicated-migration-truck-image {
  max-width: 100%;
  height: auto;
  /* If you don't have a real image, you can use this placeholder */
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .instant-dedicated-migration-container {
    flex-direction: column;
  }

  .instant-dedicated-migration-content {
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .instant-dedicated-migration-title span::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .instant-dedicated-migration-features {
    justify-content: center;
  }
  
  .instant-dedicated-migration-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .instant-dedicated-migration-section {
    padding: 60px 0;
  }

  .instant-dedicated-migration-title {
    font-size: 32px;
  }

  .instant-dedicated-migration-features {
    flex-direction: column;
    align-items: center;
  }

  .instant-dedicated-migration-feature {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .instant-dedicated-migration-section {
    padding: 40px 0;
  }

  .instant-dedicated-migration-title {
    font-size: 28px;
  }

  .instant-dedicated-migration-description {
    font-size: 14px;
  }

  .instant-dedicated-migration-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
  }
}



     /* ================================
    WORDPRESS HOSTING PAGE   
    ================================ */



    /*---------------------------------------litespeed-web-server ------------------------------------*/


/* Main section container */
.wordpress-hosting-litespeed-web-server-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

/* Background decoration */
.wordpress-hosting-litespeed-web-server-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
}

.wordpress-hosting-litespeed-web-server-bg-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #39EFC0 5%, transparent 5%);
    background-size: 30px 30px;
    transform: rotate(45deg);
}

/* Header styles */
.wordpress-hosting-litespeed-web-server-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.wordpress-hosting-litespeed-web-server-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #3a7bd5, #0FBD91);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.wordpress-hosting-litespeed-web-server-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px;
}

.wordpress-hosting-litespeed-web-server-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Load time section */
.wordpress-hosting-litespeed-web-server-load-time {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.wordpress-hosting-litespeed-web-server-load-time-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}

.wordpress-hosting-litespeed-web-server-load-time-subtitle {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
}

/* Comparison cards container */
.wordpress-hosting-litespeed-web-server-comparison {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Server card */
.wordpress-hosting-litespeed-web-server-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.wordpress-hosting-litespeed-web-server-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Card status indicator */
.wordpress-hosting-litespeed-web-server-card-status {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.wordpress-hosting-litespeed-web-server-status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.wordpress-hosting-litespeed-web-server-status-icon svg {
    width: 16px;
    height: 16px;
}

.wordpress-hosting-litespeed-web-server-status-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Different status styles */
.wordpress-hosting-litespeed-web-server-status-best .wordpress-hosting-litespeed-web-server-status-icon {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.wordpress-hosting-litespeed-web-server-status-best .wordpress-hosting-litespeed-web-server-status-text {
    color: #27ae60;
}

.wordpress-hosting-litespeed-web-server-status-average .wordpress-hosting-litespeed-web-server-status-icon {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f39c12;
}

.wordpress-hosting-litespeed-web-server-status-average .wordpress-hosting-litespeed-web-server-status-text {
    color: #f39c12;
}

.wordpress-hosting-litespeed-web-server-status-poor .wordpress-hosting-litespeed-web-server-status-icon {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.wordpress-hosting-litespeed-web-server-status-poor .wordpress-hosting-litespeed-web-server-status-text {
    color: #e74c3c;
}

/* Timer image */
.wordpress-hosting-litespeed-web-server-timer-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: contain;
}

/* Load time display */
.wordpress-hosting-litespeed-web-server-load-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.wordpress-hosting-litespeed-web-server-card-best .wordpress-hosting-litespeed-web-server-load-badge {
    background-color: #27ae60;
}

.wordpress-hosting-litespeed-web-server-card-average .wordpress-hosting-litespeed-web-server-load-badge {
    background-color: #f39c12;
}

.wordpress-hosting-litespeed-web-server-card-poor .wordpress-hosting-litespeed-web-server-load-badge {
    background-color: #e74c3c;
}

/* Server info */
.wordpress-hosting-litespeed-web-server-server-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #444;
}

.wordpress-hosting-litespeed-web-server-server-tech {
    font-size: 0.9rem;
    color: #777;
}

/* Best value highlight */
.wordpress-hosting-litespeed-web-server-card-best::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #27ae60, #2ecc71);
}

/* CTA section */
.wordpress-hosting-litespeed-web-server-cta {
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.wordpress-hosting-litespeed-web-server-cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(to right, #3a7bd5, #0FBD91);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(58, 123, 213, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.wordpress-hosting-litespeed-web-server-cta-button:hover {
    background: linear-gradient(to right, #3675c9, #0eaa83);
    box-shadow: 0 5px 20px rgba(58, 123, 213, 0.4);
}

/* Responsive styles */
@media (max-width: 992px) {
    .wordpress-hosting-litespeed-web-server-title {
        font-size: 2.2rem;
    }
    
    .wordpress-hosting-litespeed-web-server-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .wordpress-hosting-litespeed-web-server-section {
        padding: 30px 15px;
        margin: 30px auto;
    }
    
    .wordpress-hosting-litespeed-web-server-comparison {
        flex-direction: column;
        align-items: center;
    }
    
    .wordpress-hosting-litespeed-web-server-card {
        width: 100%;
        max-width: 320px;
    }
    
    .wordpress-hosting-litespeed-web-server-title {
        font-size: 1.8rem;
    }
    
    .wordpress-hosting-litespeed-web-server-subtitle {
        font-size: 1rem;
    }
    
    .wordpress-hosting-litespeed-web-server-load-time-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .wordpress-hosting-litespeed-web-server-header {
        margin-bottom: 30px;
    }
    
    .wordpress-hosting-litespeed-web-server-title {
        font-size: 1.6rem;
    }
    
    .wordpress-hosting-litespeed-web-server-timer-img {
        width: 150px;
        height: 150px;
    }
    
    .wordpress-hosting-litespeed-web-server-cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


/*---------------------------------------magento-hosting-features------------------------------------*/

/* Base styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Main container styling */
.wordpress-hosting-magento-hosting-features-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    position: relative;
}

/* Background text styling */
.wordpress-hosting-magento-hosting-features-bg-text {
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(240, 245, 255, 0.8);
    z-index: -1;
    top: 0;
    right: 0;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.02em;
    pointer-events: none;
}

/* Title styling */
.wordpress-hosting-magento-hosting-features-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #1c2d41;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin: 0 auto 60px;
    width: 100%;
}

.wordpress-hosting-magento-hosting-features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

/* Feature items */
.wordpress-hosting-magento-hosting-features-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.wordpress-hosting-magento-hosting-features-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.wordpress-hosting-magento-hosting-features-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Icon container */
.wordpress-hosting-magento-hosting-features-icon-container {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.wordpress-hosting-magento-hosting-features-icon-container:hover {
    transform: translateY(-5px);
}

.wordpress-hosting-magento-hosting-features-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content styling */
.wordpress-hosting-magento-hosting-features-content {
    flex: 1;
    position: relative;
}

.wordpress-hosting-magento-hosting-features-item-title {
    font-size: 22px;
    font-weight: 600;
    color: #1c2d41;
    margin-bottom: 10px;
}

.wordpress-hosting-magento-hosting-features-item-description {
    font-size: 16px;
    color: #596677;
    line-height: 1.6;
}

/* Highlight text */
.wordpress-hosting-magento-hosting-features-highlight {
    font-weight: 500;
}

/* Feature cards */
.wordpress-hosting-magento-hosting-features-card {
    position: relative;
    padding: 20px 20px 20px 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.wordpress-hosting-magento-hosting-features-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Color bars for different features */
.wordpress-hosting-magento-hosting-features-color-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.wordpress-hosting-magento-hosting-features-redis-color {
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
}

.wordpress-hosting-magento-hosting-features-server-color {
    background: linear-gradient(to bottom, #3498db, #2980b9);
}

.wordpress-hosting-magento-hosting-features-cdn-color {
    background: linear-gradient(to bottom, #f39c12, #d35400);
}

.wordpress-hosting-magento-hosting-features-install-color {
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
}

.wordpress-hosting-magento-hosting-features-consultancy-color {
    background: linear-gradient(to bottom, #9b59b6, #8e44ad);
}

/* Feature text highlight colors */
.wordpress-hosting-magento-hosting-features-redis-text {
    color: #e74c3c;
}

.wordpress-hosting-magento-hosting-features-server-text {
    color: #3498db;
}

.wordpress-hosting-magento-hosting-features-cdn-text {
    color: #f39c12;
}

.wordpress-hosting-magento-hosting-features-install-text {
    color: #2ecc71;
}

.wordpress-hosting-magento-hosting-features-consultancy-text {
    color: #9b59b6;
}

/* Responsive styling */
@media (max-width: 992px) {
    .wordpress-hosting-magento-hosting-features-container {
        margin: 40px auto;
    }
    
    .wordpress-hosting-magento-hosting-features-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .wordpress-hosting-magento-hosting-features-item,
    .wordpress-hosting-magento-hosting-features-item:nth-child(even) {
        flex-direction: column;
        align-items: center;
    }
    
    .wordpress-hosting-magento-hosting-features-icon-container {
        margin: 0 auto 20px;
    }
    
    .wordpress-hosting-magento-hosting-features-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .wordpress-hosting-magento-hosting-features-card {
        padding: 25px 20px 20px 20px;
    }
    
    .wordpress-hosting-magento-hosting-features-color-bar {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }
    .wordpress-hosting-magento-hosting-features-redis-color,
    .wordpress-hosting-magento-hosting-features-server-color,
    .wordpress-hosting-magento-hosting-features-cdn-color,
    .wordpress-hosting-magento-hosting-features-install-color,
    .wordpress-hosting-magento-hosting-features-consultancy-color {
        width: 100%;
        height: 4px;
    }
    
    .wordpress-hosting-magento-hosting-features-item-title {
        font-size: 20px;
        text-align: center;
    }
    
    .wordpress-hosting-magento-hosting-features-item-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wordpress-hosting-magento-hosting-features-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .wordpress-hosting-magento-hosting-features-item-title {
        font-size: 18px;
    }
    
    .wordpress-hosting-magento-hosting-features-items {
        gap: 40px;
    }
    
    .wordpress-hosting-magento-hosting-features-icon-container {
        width: 100px;
        height: 100px;
    }
}

/* Animation keyframes for subtle entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*---------------------------------------litespeed-webserver-feature------------------------------------*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Main section container */
.wordpress-hosting-litespeed-webserver-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

/* Background text styling */
.wordpress-hosting-litespeed-webserver-bg-text {
    position: absolute;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(240, 245, 255, 0.7);
    z-index: -1;
    top: -50px;
    right: 0;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.02em;
    pointer-events: none;
    opacity: 0.5;
}

/* Header styling */
.wordpress-hosting-litespeed-webserver-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.wordpress-hosting-litespeed-webserver-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2b47;
    margin-bottom: 5px;
}

.wordpress-hosting-litespeed-webserver-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #4a6491;
}

/* Main content area */
.wordpress-hosting-litespeed-webserver-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

/* Screenshot styling */
.wordpress-hosting-litespeed-webserver-screenshot {
    flex: 1;
    min-width: 300px;
}

.wordpress-hosting-litespeed-webserver-browser {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 1px solid #e0e0e0;
}

.wordpress-hosting-litespeed-webserver-browser-header {
    background: #f1f3f4;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.wordpress-hosting-litespeed-webserver-browser-buttons {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.wordpress-hosting-litespeed-webserver-browser-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.wordpress-hosting-litespeed-webserver-browser-button.red {
    background-color: #ff5f57;
}

.wordpress-hosting-litespeed-webserver-browser-button.yellow {
    background-color: #ffbd2e;
}

.wordpress-hosting-litespeed-webserver-browser-button.green {
    background-color: #28c940;
}

.wordpress-hosting-litespeed-webserver-browser-title {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.wordpress-hosting-litespeed-webserver-browser-content {
    padding: 15px;
    background: #fff;
}

.wordpress-hosting-litespeed-webserver-screenshot-img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* Text content styling */
.wordpress-hosting-litespeed-webserver-info {
    flex: 1;
    min-width: 300px;
}

.wordpress-hosting-litespeed-webserver-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.wordpress-hosting-litespeed-webserver-highlight {
    color: #0066cc;
    font-weight: 600;
}

/* Graph styling */
.wordpress-hosting-litespeed-webserver-comparison {
    margin-bottom: 60px;
    /* Add width constraint to ensure graph fits properly */
    width: 100%;
    overflow: visible;
}

.wordpress-hosting-litespeed-webserver-graph-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.wordpress-hosting-litespeed-webserver-graph {
    position: relative;
    /* Add right padding to ensure values are visible */
    padding-right: 60px;
}

.wordpress-hosting-litespeed-webserver-graph-container {
    display: flex;
    margin-bottom: 20px;
}

.wordpress-hosting-litespeed-webserver-graph-labels {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wordpress-hosting-litespeed-webserver-graph-label {
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    padding-right: 10px;
    text-align: right;
}

.wordpress-hosting-litespeed-webserver-graph-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.wordpress-hosting-litespeed-webserver-graph-bar {
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    /* Allow space for value */
    padding-right: 60px;
}

.wordpress-hosting-litespeed-webserver-bar {
    height: 24px;
    background-color: #3498db;
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
    width: 0;
    position: relative;
    max-width: calc(100% - 60px); /* Ensure bar doesn't overlap value */
}

.wordpress-hosting-litespeed-webserver-value {
    position: absolute;
    right: 0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    opacity: 0;
    transition: opacity 0.5s ease-in-out 1s;
    /* Fix for value visibility */
    width: 50px;
    text-align: right;
}

/* Different colors for different cache types */
.wordpress-hosting-litespeed-webserver-lscache {
    background-color: #2ecc71;
}

.wordpress-hosting-litespeed-webserver-wp-rocket {
    background-color: #3498db;
}

.wordpress-hosting-litespeed-webserver-wp-super-cache {
    background-color: #f39c12;
}

.wordpress-hosting-litespeed-webserver-wp-fastest-cache {
    background-color: #9b59b6;
}

.wordpress-hosting-litespeed-webserver-w3-total-cache {
    background-color: #1abc9c;
}

.wordpress-hosting-litespeed-webserver-wp-simple-cache {
    background-color: #e74c3c;
}

.wordpress-hosting-litespeed-webserver-no-cache {
    background-color: #95a5a6;
}

.wordpress-hosting-litespeed-webserver-graph-x-axis {
    display: flex;
    justify-content: space-between;
    padding-left: 150px;
    font-size: 12px;
    color: #777;
    /* Add right padding to match graph */
    padding-right: 60px;
}

/* Features section */
.wordpress-hosting-litespeed-webserver-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.wordpress-hosting-litespeed-webserver-feature {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 25px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wordpress-hosting-litespeed-webserver-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.wordpress-hosting-litespeed-webserver-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.wordpress-hosting-litespeed-webserver-feature:hover .wordpress-hosting-litespeed-webserver-feature-icon {
    transform: scale(1.1);
}

.wordpress-hosting-litespeed-webserver-icon {
    width: 35px;
    height: 35px;
    fill: #3498db;
}

.wordpress-hosting-litespeed-webserver-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.wordpress-hosting-litespeed-webserver-feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Make the first feature icon blue */
.wordpress-hosting-litespeed-webserver-feature:nth-child(1) .wordpress-hosting-litespeed-webserver-feature-icon {
    background-color: rgba(52, 152, 219, 0.1);
}

.wordpress-hosting-litespeed-webserver-feature:nth-child(1) .wordpress-hosting-litespeed-webserver-icon {
    fill: #3498db;
}

/* Make the second feature icon orange */
.wordpress-hosting-litespeed-webserver-feature:nth-child(2) .wordpress-hosting-litespeed-webserver-feature-icon {
    background-color: rgba(243, 156, 18, 0.1);
}

.wordpress-hosting-litespeed-webserver-feature:nth-child(2) .wordpress-hosting-litespeed-webserver-icon {
    fill: #f39c12;
}

/* Make the third feature icon green */
.wordpress-hosting-litespeed-webserver-feature:nth-child(3) .wordpress-hosting-litespeed-webserver-feature-icon {
    background-color: rgba(46, 204, 113, 0.1);
}

.wordpress-hosting-litespeed-webserver-feature:nth-child(3) .wordpress-hosting-litespeed-webserver-icon {
    fill: #2ecc71;
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .wordpress-hosting-litespeed-webserver-title {
        font-size: 32px;
    }
    
    .wordpress-hosting-litespeed-webserver-subtitle {
        font-size: 20px;
    }
    
    .wordpress-hosting-litespeed-webserver-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wordpress-hosting-litespeed-webserver-content {
        flex-direction: column;
    }
    
    .wordpress-hosting-litespeed-webserver-screenshot,
    .wordpress-hosting-litespeed-webserver-info {
        min-width: 100%;
    }
    
    .wordpress-hosting-litespeed-webserver-title {
        font-size: 28px;
    }
    
    .wordpress-hosting-litespeed-webserver-subtitle {
        font-size: 18px;
    }
    
    .wordpress-hosting-litespeed-webserver-feature {
        min-width: 100%;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-labels {
        flex: 0 0 120px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-label {
        font-size: 12px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-x-axis {
        padding-left: 120px;
    }
    
    /* Fix for value visibility on smaller screens */
    .wordpress-hosting-litespeed-webserver-value {
        right: 0;
        width: 60px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-bar {
        padding-right: 70px;
    }
    
    .wordpress-hosting-litespeed-webserver-bar {
        max-width: calc(100% - 70px);
    }
    
    .wordpress-hosting-litespeed-webserver-graph {
        padding-right: 70px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-x-axis {
        padding-right: 70px;
    }
}

@media (max-width: 576px) {
    .wordpress-hosting-litespeed-webserver-section {
        margin: 40px auto;
    }
    
    .wordpress-hosting-litespeed-webserver-title {
        font-size: 24px;
    }
    
    .wordpress-hosting-litespeed-webserver-subtitle {
        font-size: 16px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-labels {
        flex: 0 0 100px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-label {
        font-size: 10px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-x-axis {
        padding-left: 100px;
        font-size: 10px;
    }
    
    /* Further adjustments for smallest screens */
    .wordpress-hosting-litespeed-webserver-value {
        font-size: 11px;
        width: 65px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-bar {
        padding-right: 75px;
    }
    
    .wordpress-hosting-litespeed-webserver-bar {
        max-width: calc(100% - 75px);
    }
    
    .wordpress-hosting-litespeed-webserver-graph {
        padding-right: 75px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-x-axis {
        padding-right: 75px;
    }
    
    /* Adjust feature icon size for mobile */
    .wordpress-hosting-litespeed-webserver-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .wordpress-hosting-litespeed-webserver-icon {
        width: 30px;
        height: 30px;
    }
    
    .wordpress-hosting-litespeed-webserver-feature-title {
        font-size: 16px;
    }
    
    .wordpress-hosting-litespeed-webserver-feature-description {
        font-size: 13px;
    }
}

/* Specific fix for graphs at small widths */
@media (max-width: 480px) {
    .wordpress-hosting-litespeed-webserver-graph-container {
        margin-right: -20px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-labels {
        flex: 0 0 90px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-label {
        font-size: 9px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-x-axis {
        padding-left: 90px;
        font-size: 9px;
    }
    
    .wordpress-hosting-litespeed-webserver-value {
        font-size: 9px;
        width: 50px;
        right: 0;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-bar {
        padding-right: 55px;
        height: 30px;
    }
    
    .wordpress-hosting-litespeed-webserver-bar {
        max-width: calc(100% - 55px);
        height: 18px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph {
        padding-right: 55px;
    }
    
    .wordpress-hosting-litespeed-webserver-graph-x-axis {
        padding-right: 55px;
    }
}


/*---------------------------------------perfect-host------------------------------------*/

.wordpress-hosting-perfect-host-section {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.wordpress-hosting-perfect-host-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Particles background */
.wordpress-hosting-perfect-host-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

/* Title styling */
.wordpress-hosting-perfect-host-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #00112C;
    position: relative;
    font-family: var(--font-primary);
}

.wordpress-hosting-perfect-host-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: rgb(var(--color-primary));
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Features container */
.wordpress-hosting-perfect-host-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

/* Feature cards */
.wordpress-hosting-perfect-host-feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(57, 239, 192, 0.1);
    height: 100%;
}

.wordpress-hosting-perfect-host-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(57, 239, 192, 0.3);
}

/* Icon styling */
.wordpress-hosting-perfect-host-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(57, 239, 192, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.wordpress-hosting-perfect-host-icon {
    font-size: 32px;
    color: rgb(15, 189, 145);
    transition: all 0.3s ease;
}

.wordpress-hosting-perfect-host-feature-card:hover .wordpress-hosting-perfect-host-icon-container {
    background: rgba(57, 239, 192, 0.2);
    box-shadow: 0 0 0 8px rgba(57, 239, 192, 0.1);
}

.wordpress-hosting-perfect-host-feature-card:hover .wordpress-hosting-perfect-host-icon {
    color: rgb(var(--color-primary-dark));
    transform: scale(1.1);
}

/* Title and description styling */
.wordpress-hosting-perfect-host-feature-title {
    font-size: 24px;
    color: #00112C;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-family: var(--font-primary);
}

.wordpress-hosting-perfect-host-feature-description {
    color: #373737;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Hover effect */
.wordpress-hosting-perfect-host-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

.wordpress-hosting-perfect-host-feature-card:hover .wordpress-hosting-perfect-host-hover-effect {
    transform: scaleX(1);
}

/* CTA section */
.wordpress-hosting-perfect-host-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.wordpress-hosting-perfect-host-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgb(var(--color-primary));
    color: #00112C;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgb(var(--color-primary));
    cursor: pointer;
    font-family: var(--font-primary);
    letter-spacing: 0.35px;
    line-height: 1rem;
}

.wordpress-hosting-perfect-host-button:hover {
    background-color: rgb(var(--color-primary-dark));
    border-color: rgb(var(--color-primary-dark));
    transform: translateY(-3px);
}

.wordpress-hosting-perfect-host-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: transparent;
    color: #00112C;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #00112C;
    letter-spacing: 0.35px;
    line-height: 1rem;
    font-family: var(--font-primary);
}

.wordpress-hosting-perfect-host-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.wordpress-hosting-perfect-host-link:hover {
    background-color: #00112c;
    color: #fff;
}

.wordpress-hosting-perfect-host-link:hover i {
    transform: translateX(5px);
}

/* Floating animation for cards - reduced intensity */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.wordpress-hosting-perfect-host-feature-card:nth-child(1) {
    animation: float 8s ease-in-out infinite;
}

.wordpress-hosting-perfect-host-feature-card:nth-child(2) {
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.wordpress-hosting-perfect-host-feature-card:nth-child(3) {
    animation: float 8s ease-in-out infinite;
    animation-delay: 4s;
}

/* Add some depth to the section with subtle patterns */
.wordpress-hosting-perfect-host-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(57, 239, 192, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(57, 239, 192, 0.03) 0%, transparent 25%);
    z-index: 0;
}

/* Custom scrollbar for modern browsers */
.wordpress-hosting-perfect-host-feature-card::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.wordpress-hosting-perfect-host-feature-card::-webkit-scrollbar-track {
    background: transparent;
}

.wordpress-hosting-perfect-host-feature-card::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-primary));
}

/* Responsive styles */
@media (max-width: 992px) {
    .wordpress-hosting-perfect-host-feature-card {
        min-width: 280px;
    }
    
    .wordpress-hosting-perfect-host-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .wordpress-hosting-perfect-host-section {
        padding: 60px 0;
    }
    
    .wordpress-hosting-perfect-host-features {
        flex-direction: column;
        align-items: center;
    }
    
    .wordpress-hosting-perfect-host-feature-card {
        width: 100%;
        max-width: 500px;
    }
    
    .wordpress-hosting-perfect-host-title {
        font-size: 30px;
    }
    
    /* Disable float animation on mobile for better performance */
    .wordpress-hosting-perfect-host-feature-card:nth-child(1),
    .wordpress-hosting-perfect-host-feature-card:nth-child(2),
    .wordpress-hosting-perfect-host-feature-card:nth-child(3) {
        animation: none;
    }
}

@media (max-width: 576px) {
    .wordpress-hosting-perfect-host-section {
        padding: 40px 0;
    }
    
    .wordpress-hosting-perfect-host-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .wordpress-hosting-perfect-host-feature-title {
        font-size: 20px;
    }
    
    .wordpress-hosting-perfect-host-feature-description {
        font-size: 15px;
    }
    
    .wordpress-hosting-perfect-host-button,
    .wordpress-hosting-perfect-host-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .wordpress-hosting-perfect-host-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .wordpress-hosting-perfect-host-icon {
        font-size: 28px;
    }
}

/* Enhanced accessibility */
.wordpress-hosting-perfect-host-button:focus,
.wordpress-hosting-perfect-host-link:focus {
    outline: 2px solid rgba(57, 239, 192, 0.5);
    outline-offset: 2px;
}

.wordpress-hosting-perfect-host-feature-card:focus-within {
    outline: 2px solid rgba(57, 239, 192, 0.5);
    box-shadow: 0 0 0 4px rgba(57, 239, 192, 0.4);
}


/*---------------------------------------exclusive-application-hosting-features------------------------------------*/

.wordpress-hosting-exclusive-application-hosting-features {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff; /* Changed from var(--background-light) to #ffffff */
}

.wordpress-hosting-exclusive-application-hosting-features::before {
    content: "FEATURES";
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 33, 67, 0.03);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
    letter-spacing: 5px;
}

.wordpress-hosting-exclusive-application-hosting-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Title */
.wordpress-hosting-exclusive-application-hosting-features-title {
    font-size: 45px;
    font-weight: 600;
    color: #00112C; /* Changed from var(--text-dark) to #00112C */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: 0.5px;
    line-height: 48px;
}

.wordpress-hosting-exclusive-application-hosting-features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #39EFC0; /* Changed from var(--primary-color) to #39EFC0 */
    border-radius: 2px;
}

/* Features Grid */
.wordpress-hosting-exclusive-application-hosting-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Feature Card */
.wordpress-hosting-exclusive-application-hosting-features-card {
    background-color: rgba(255, 255, 255, 0.7); /* Changed to transparent background with light white overlay */
    border-radius: 8px; /* Changed from var(--border-radius) to explicit 8px */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Changed from var(--card-shadow) to explicit value */
    padding: 30px;
    position: relative;
    transition: all 0.3s ease; /* Changed from var(--transition-standard) to explicit value */
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(57, 239, 192, 0.1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px); /* Added for glassmorphism effect */
}

.wordpress-hosting-exclusive-application-hosting-features-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #39EFC0; /* Changed from var(--primary-color) to #39EFC0 */
    background-color: rgba(255, 255, 255, 0.85); /* Slightly more opaque on hover */
}

/* Gradient border top on hover */
.wordpress-hosting-exclusive-application-hosting-features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #39EFC0; /* Changed from var(--primary-color) to #39EFC0 */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.wordpress-hosting-exclusive-application-hosting-features-card:hover::before {
    transform: scaleX(1);
}

/* Card Icon */
.wordpress-hosting-exclusive-application-hosting-features-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(57, 239, 192, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease; /* Changed from var(--transition-standard) to explicit value */
}

.wordpress-hosting-exclusive-application-hosting-features-card:hover .wordpress-hosting-exclusive-application-hosting-features-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(57, 239, 192, 0.2);
}

.wordpress-hosting-exclusive-application-hosting-features-card-icon i {
    font-size: 28px;
    color: #0FBD91; /* Changed from var(--primary-color-dark) to #0FBD91 */
}

/* Card Content */
.wordpress-hosting-exclusive-application-hosting-features-card-content {
    flex: 1;
}

.wordpress-hosting-exclusive-application-hosting-features-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #00112C; /* Changed from var(--text-dark) to #00112C */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.wordpress-hosting-exclusive-application-hosting-features-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #39EFC0; /* Changed from var(--primary-color) to #39EFC0 */
    transition: width 0.3s ease;
}

.wordpress-hosting-exclusive-application-hosting-features-card:hover .wordpress-hosting-exclusive-application-hosting-features-card-title::after {
    width: 60px;
}

.wordpress-hosting-exclusive-application-hosting-features-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #373737; /* Changed from var(--text-medium) to #373737 */
    font-weight: 300;
}

/* Card Badge */
.wordpress-hosting-exclusive-application-hosting-features-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #39EFC0; /* Changed from var(--primary-color) to #39EFC0 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00112C; /* Changed from var(--text-dark) to #00112C */
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(57, 239, 192, 0.4);
    transition: all 0.3s ease; /* Changed from var(--transition-standard) to explicit value */
}

.wordpress-hosting-exclusive-application-hosting-features-card:hover .wordpress-hosting-exclusive-application-hosting-features-card-badge {
    transform: scale(1.2);
    background-color: #0FBD91; /* Changed from var(--primary-color-dark) to #0FBD91 */
    color: #ffffff; /* Changed from var(--white) to #ffffff */
}

/* Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Visible class for Intersection Observer */
.wordpress-hosting-exclusive-application-hosting-features-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyboard focus styles for accessibility */
.wordpress-hosting-exclusive-application-hosting-features-card.keyboard-focus {
    outline: 2px solid #39EFC0;
    box-shadow: 0 0 0 5px rgba(57, 239, 192, 0.3);
}

/* Floating particles effect */
.wordpress-hosting-exclusive-application-hosting-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(57, 239, 192, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 80% 40%, rgba(15, 189, 145, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 40% 80%, rgba(18, 118, 140, 0.05) 0%, transparent 8%),
        radial-gradient(circle at 70% 90%, rgba(57, 239, 192, 0.05) 0%, transparent 8%);
    z-index: -1;
    pointer-events: none;
}

/* Custom cursor on card hover */
.wordpress-hosting-exclusive-application-hosting-features-card:hover {
    cursor: pointer;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .wordpress-hosting-exclusive-application-hosting-features-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media screen and (max-width: 992px) {
    .wordpress-hosting-exclusive-application-hosting-features {
        padding: 60px 0;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-title {
        font-size: 32px;
        margin-bottom: 50px;
        line-height: 1.2;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .wordpress-hosting-exclusive-application-hosting-features-title {
        font-size: 28px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card {
        padding: 25px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card-icon i {
        font-size: 24px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .wordpress-hosting-exclusive-application-hosting-features {
        padding: 40px 0;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-title {
        font-size: 25px;
        margin-bottom: 40px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card {
        padding: 20px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card-icon i {
        font-size: 20px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card-badge {
        top: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card-title {
        font-size: 18px;
    }
}

/* Reduce motion preference support */
@media (prefers-reduced-motion: reduce) {
    .wordpress-hosting-exclusive-application-hosting-features-card {
        transition: none;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card:hover {
        transform: none;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card-icon,
    .wordpress-hosting-exclusive-application-hosting-features-card-badge {
        transition: none;
    }
    
    [data-aos="fade-up"] {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .wordpress-hosting-exclusive-application-hosting-features {
        padding: 20px 0;
        background-color: #fff;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
        page-break-inside: avoid;
        background-color: #fff; /* Solid white for print */
    }
    
    .wordpress-hosting-exclusive-application-hosting-features-card:hover {
        transform: none;
        box-shadow: none;
    }
}


/*------------------------white-label-feature--------------------------- */

.reseller-hosting-white-label-section {
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
}

/* Hero Banner */
.reseller-hosting-white-label-hero {
    background: linear-gradient(120deg, #1a3756 0%, var(--background-blue) 100%);
    border-radius: 16px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: var(--box-shadow);
}

.reseller-hosting-white-label-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(57, 239, 192, 0.15), transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.reseller-hosting-white-label-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(57, 239, 192, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.reseller-hosting-white-label-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.reseller-hosting-white-label-features {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.reseller-hosting-white-label-feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    width: calc(50% - 8px);
    cursor: pointer;
}

.reseller-hosting-white-label-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.reseller-hosting-white-label-feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(57, 239, 192, 0.2);
    border-radius: 6px;
    color: rgb(var(--primary-color));
}

.reseller-hosting-white-label-feature-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.reseller-hosting-white-label-feature-text {
    color: black;
    font-size: 14px;
    font-weight: 500;
}

.reseller-hosting-white-label-content {
    flex: 0 0 450px;
    text-align: right;
}

.reseller-hosting-white-label-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reseller-hosting-white-label-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.reseller-hosting-white-label-highlight {
    color: rgb(var(--primary-color));
    font-weight: 600;
}

/* Domain Reseller Section */
.reseller-hosting-domain-section {
    padding: 20px 0 80px;
    background-color: #ffffff;
}

.reseller-hosting-domain-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reseller-hosting-domain-header {
    text-align: left;
    margin-bottom: 50px;
}

.reseller-hosting-domain-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    line-height: 48px;
}

.reseller-hosting-domain-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, rgb(var(--primary-color)), rgb(var(--primary-dark)));
    border-radius: 2px;
}

.reseller-hosting-domain-description {
    font-size: 16px;
    color: #373737;
    max-width: 700px;
    margin-top: 20px;
    font-weight: 300;
}

.reseller-hosting-domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.reseller-hosting-domain-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reseller-hosting-domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, rgb(var(--primary-color)), rgb(var(--primary-dark)));
    opacity: 0;
    transition: var(--transition);
}

.reseller-hosting-domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.reseller-hosting-domain-card:hover::before {
    opacity: 1;
}

.reseller-hosting-domain-icon {
    background-color: rgba(var(--primary-color), 0.1);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.reseller-hosting-domain-card:hover .reseller-hosting-domain-icon {
    background-color: rgba(var(--primary-color), 0.2);
    transform: scale(1.05);
}

.reseller-hosting-domain-icon svg {
    width: 36px;
    height: 36px;
    fill: rgb(var(--primary-dark));
}

.reseller-hosting-domain-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.reseller-hosting-domain-card-description {
    font-size: 15px;
    color: #373737;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 300;
}

.reseller-hosting-domain-benefits {
    margin-top: auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.reseller-hosting-domain-benefit {
    font-size: 14px;
    color: #373737;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reseller-hosting-domain-benefit-icon {
    color: rgb(var(--primary-dark));
    font-size: 14px;
}

.reseller-hosting-domain-profit-graph {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reseller-hosting-domain-graph {
    flex: 0 0 400px;
    height: 250px;
    position: relative;
}

.reseller-hosting-domain-graph-bars {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 10px;
}

.reseller-hosting-domain-graph-bar {
    width: 60px;
    background: linear-gradient(to top, rgb(var(--primary-dark)), rgb(var(--primary-color)));
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
    height: 0;
}

.reseller-hosting-domain-graph-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 17, 44, 0.1);
    z-index: 1;
}

.reseller-hosting-domain-graph-line:nth-child(1) {
    bottom: 20%;
}

.reseller-hosting-domain-graph-line:nth-child(2) {
    bottom: 40%;
}

.reseller-hosting-domain-graph-line:nth-child(3) {
    bottom: 60%;
}

.reseller-hosting-domain-graph-line:nth-child(4) {
    bottom: 80%;
}

.reseller-hosting-domain-graph-content {
    flex: 1;
}

.reseller-hosting-domain-graph-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.reseller-hosting-domain-graph-description {
    font-size: 16px;
    color: #373737;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .reseller-hosting-domain-title {
        font-size: 32px;
    }
    
    .reseller-hosting-white-label-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .reseller-hosting-white-label-hero-container {
        flex-direction: column;
    }
    
    .reseller-hosting-white-label-content {
        flex: 0 0 auto;
        text-align: center;
        order: 1;
    }
    
    .reseller-hosting-white-label-features {
        order: 2;
    }
    
    .reseller-hosting-domain-profit-graph {
        flex-direction: column;
    }
    
    .reseller-hosting-domain-graph {
        flex: 0 0 200px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reseller-hosting-white-label-hero {
        padding: 40px 20px;
    }
    
    .reseller-hosting-white-label-title {
        font-size: 32px;
    }
    
    .reseller-hosting-domain-title {
        font-size: 28px;
    }
    
    .reseller-hosting-domain-grid {
        grid-template-columns: 1fr;
    }
    
    .reseller-hosting-white-label-feature-item {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .reseller-hosting-white-label-title {
        font-size: 28px;
    }
    
    .reseller-hosting-white-label-subtitle {
        font-size: 14px;
    }
    
    .reseller-hosting-domain-card {
        padding: 20px;
    }
    
    .reseller-hosting-domain-icon {
        width: 60px;
        height: 60px;
    }
    
    .reseller-hosting-domain-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .reseller-hosting-domain-card-title {
        font-size: 20px;
    }
}



/*--------------------reseller-hosting-plan-section-----------------------*/


/* Reseller Hosting Plan Section Styles with Updated Color Theme */
.reseller-hosting-plan-section {
  padding: 80px 0;
  background-color: #f0f7f7; /* Light blue-green background */
  position: relative;
  overflow: hidden;
}

/* Background elements */
.reseller-hosting-plan-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 242, 241, 0.8) 0%, rgba(224, 242, 241, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.reseller-hosting-plan-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 242, 241, 0.5) 0%, rgba(224, 242, 241, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Header styles */
.reseller-hosting-plan-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.reseller-hosting-plan-title {
  font-size: 42px;
  font-weight: 700;
  color: #0e2840; /* Dark navy blue for headings */
  margin-bottom: 15px;
}

.reseller-hosting-plan-highlight {
  font-style: italic;
  color: #166064; /* Teal accent color */
  position: relative;
}

.reseller-hosting-plan-title .reseller-hosting-plan-highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #166064;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.reseller-hosting-plan-section:hover .reseller-hosting-plan-title .reseller-hosting-plan-highlight::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.reseller-hosting-plan-subtitle {
  font-size: 18px;
  color: #4a6176; /* Medium blue-gray for subtitles */
  font-weight: 400;
}

/* Tabs Navigation */
.reseller-hosting-plan-tabs {
  position: relative;
  z-index: 1;
}

.reseller-hosting-plan-tab-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #c9e0e0;
  margin-bottom: 40px;
  position: relative;
}

.reseller-hosting-plan-tab-item {
  padding: 15px 25px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #4a6176; /* Medium blue-gray for tab text */
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.reseller-hosting-plan-tab-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #166064; /* Teal for tab indicator */
  transition: width 0.3s ease-in-out;
  border-radius: 2px 2px 0 0;
}

.reseller-hosting-plan-tab-item.active {
  color: #166064; /* Teal for active tab */
  font-weight: 600;
}

.reseller-hosting-plan-tab-item.active::after {
  width: 100%;
  background: linear-gradient(to right, #166064, #0e2840); /* Gradient from teal to navy */
}

.reseller-hosting-plan-tab-item:hover {
  color: #166064;
}

.reseller-hosting-plan-tab-item:hover::after {
  width: 100%;
}

/* Ripple effect for tab items */
.reseller-hosting-plan-ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(22, 96, 100, 0.3); /* Teal with opacity */
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Tab Content */
.reseller-hosting-plan-tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.reseller-hosting-plan-tab-content.active {
  display: block;
  animation: tabFadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reseller-hosting-plan-content-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.reseller-hosting-plan-content-text {
  flex: 1;
  min-width: 300px;
}

.reseller-hosting-plan-content-title {
  font-size: 28px;
  font-weight: 600;
  color: #0e2840; /* Dark navy blue for content titles */
  margin-bottom: 15px;
}

.reseller-hosting-plan-content-description {
  font-size: 16px;
  color: #4a6176; /* Medium blue-gray for descriptions */
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Features List */
.reseller-hosting-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reseller-hosting-plan-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.reseller-hosting-plan-feature-item:last-child {
  margin-bottom: 0;
}

.reseller-hosting-plan-feature-icon {
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(22, 96, 100, 0.15); /* Teal with opacity */
}

.reseller-hosting-plan-feature-icon::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #166064; /* Teal for check marks */
  font-size: 12px;
  font-weight: bold;
}

.reseller-hosting-plan-feature-text {
  color: #4a6176; /* Medium blue-gray for feature text */
  font-size: 16px;
  line-height: 1.6;
}

/* Icons Grid */
.reseller-hosting-plan-content-image {
  flex: 1;
  min-width: 300px;
}

.reseller-hosting-plan-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 450px;
  margin: 0 auto;
}

.reseller-hosting-plan-icon-item {
  background-color: #e0f2f1; /* Light teal background for icon items */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid #c9e0e0; /* Light border around cards */
}

/* Add a floating animation to the icons */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.reseller-hosting-plan-icon-item:nth-child(1) {
  animation: float 4s ease-in-out infinite;
}

.reseller-hosting-plan-icon-item:nth-child(2) {
  animation: float 4.5s ease-in-out infinite 0.2s;
}

.reseller-hosting-plan-icon-item:nth-child(3) {
  animation: float 5s ease-in-out infinite 0.4s;
}

.reseller-hosting-plan-icon-item:nth-child(4) {
  animation: float 4.2s ease-in-out infinite 0.6s;
}

.reseller-hosting-plan-icon-item:hover {
  animation: pulse 1.5s infinite !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #e7f7f6; /* Slightly lighter background on hover */
  border: 1px solid #166064; /* Teal border on hover */
}

/* Add a pulse animation to the icons */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 96, 100, 0.4); /* Teal with opacity */
  }
  70% {
    box-shadow: 0 0 0 10px rgba(22, 96, 100, 0); /* Teal with opacity */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 96, 100, 0); /* Teal with opacity */
  }
}

.reseller-hosting-plan-icon {
  width: 60%;
  height: 60%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: invert(28%) sepia(19%) saturate(2217%) hue-rotate(154deg) brightness(95%) contrast(102%); /* Tint SVGs to match teal color */
}

.reseller-hosting-plan-icon-item:hover .reseller-hosting-plan-icon {
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .reseller-hosting-plan-section {
    padding: 60px 0;
  }
  
  .reseller-hosting-plan-title {
    font-size: 36px;
  }
  
  .reseller-hosting-plan-content-title {
    font-size: 24px;
  }
  
  .reseller-hosting-plan-icons-grid {
    gap: 15px;
  }
  
  .reseller-hosting-plan-icon-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .reseller-hosting-plan-section {
    padding: 40px 0;
  }
  
  .reseller-hosting-plan-title {
    font-size: 32px;
  }
  
  .reseller-hosting-plan-subtitle {
    font-size: 16px;
  }
  
  .reseller-hosting-plan-tab-items {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .reseller-hosting-plan-tab-items::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  /* Add scroll indicators */
  .reseller-hosting-plan-tab-items::before,
  .reseller-hosting-plan-tab-items::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    pointer-events: none;
    z-index: 2;
  }
  
  .reseller-hosting-plan-tab-items::before {
    left: 0;
    background: linear-gradient(to right, #f0f7f7, transparent);
  }
  
  .reseller-hosting-plan-tab-items::after {
    right: 0;
    background: linear-gradient(to left, #f0f7f7, transparent);
  }
  
  .reseller-hosting-plan-tab-item {
    white-space: nowrap;
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .reseller-hosting-plan-content-wrap {
    flex-direction: column;
    gap: 30px;
  }
  
  .reseller-hosting-plan-content-text, 
  .reseller-hosting-plan-content-image {
    width: 100%;
  }
  
  .reseller-hosting-plan-content-title {
    text-align: center;
  }
  
  .reseller-hosting-plan-content-description {
    text-align: center;
  }
  
  .reseller-hosting-plan-feature-text {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .reseller-hosting-plan-title {
    font-size: 28px;
  }
  
  .reseller-hosting-plan-content-title {
    font-size: 22px;
  }
  
  .reseller-hosting-plan-icons-grid {
    grid-template-columns: 1fr;
    max-width: 250px;
  }
  
  .reseller-hosting-plan-icon-item {
    aspect-ratio: 16/9;
  }
}

/*------------------reseller-hosting-control-panel----------------*/


.reseller-hosting-control-panel {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Background effects */
.reseller-hosting-control-panel::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(var(--color-primary), 0.05);
  border-radius: 50%;
  z-index: 0;
}

.reseller-hosting-control-panel::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(var(--color-primary-dark), 0.05);
  border-radius: 50%;
  z-index: 0;
}

/* Header styles */
.reseller-hosting-control-panel-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.reseller-hosting-control-panel-title {
  font-size: 42px;
  font-weight: 700;
  color: #00112C;
  margin-bottom: 15px;
}

.reseller-hosting-control-panel-subtitle {
  font-size: 18px;
  color: #373737;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Tab navigation styles */
.reseller-hosting-control-panel-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  position: relative;
}

.reseller-hosting-control-panel-tab {
  padding: 10px 30px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 18px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reseller-hosting-control-panel-tab:hover {
  color: rgb(var(--color-primary-dark));
}

.reseller-hosting-control-panel-tab.active {
  color: rgb(var(--color-primary-dark));
  border-bottom: 3px solid rgb(var(--color-primary-dark));
}

.reseller-hosting-control-panel-tab-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: rgb(var(--color-primary-dark));
  transition: all 0.3s ease;
}

/* Content section styles */
.reseller-hosting-control-panel-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.reseller-hosting-control-panel-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.reseller-hosting-control-panel-intro {
  text-align: center;
  margin-bottom: 60px;
}

.reseller-hosting-control-panel-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #00112C;
  margin-bottom: 20px;
}

.reseller-hosting-control-panel-description {
  font-size: 18px;
  color: #373737;
  max-width: 800px;
  margin: 0 auto;
}

/* Features grid styles */
.reseller-hosting-control-panel-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Feature card styles */
.reseller-hosting-control-panel-feature {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--color-primary), 0.1);
  position: relative;
  overflow: hidden;
}

.reseller-hosting-control-panel-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  transition: height 0.3s ease;
}

.reseller-hosting-control-panel-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--color-primary), 0.3);
}

.reseller-hosting-control-panel-feature:hover::before {
  height: 100%;
}

.reseller-hosting-control-panel-feature.feature-active {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--color-primary), 0.3);
}

.reseller-hosting-control-panel-feature.feature-active::before {
  height: 100%;
}

/* Feature icon styles */
.reseller-hosting-control-panel-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--color-primary), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.reseller-hosting-control-panel-feature:hover .reseller-hosting-control-panel-feature-icon,
.reseller-hosting-control-panel-feature.feature-active .reseller-hosting-control-panel-feature-icon {
  background: rgb(var(--color-primary));
}

.reseller-hosting-control-panel-feature-icon i {
  font-size: 24px;
  color: rgb(var(--color-primary-dark));
  transition: all 0.3s ease;
}

.reseller-hosting-control-panel-feature:hover .reseller-hosting-control-panel-feature-icon i,
.reseller-hosting-control-panel-feature.feature-active .reseller-hosting-control-panel-feature-icon i {
  color: #fff;
}

/* Feature content styles */
.reseller-hosting-control-panel-feature-content {
  flex: 1;
}

.reseller-hosting-control-panel-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #00112C;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.reseller-hosting-control-panel-feature:hover .reseller-hosting-control-panel-feature-title,
.reseller-hosting-control-panel-feature.feature-active .reseller-hosting-control-panel-feature-title {
  color: rgb(var(--color-primary-dark));
}

.reseller-hosting-control-panel-feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #373737;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .reseller-hosting-control-panel-features {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .reseller-hosting-control-panel-features {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .reseller-hosting-control-panel-title {
      font-size: 36px;
  }
  
  .reseller-hosting-control-panel-section-title {
      font-size: 28px;
  }
}

@media (max-width: 768px) {
  .reseller-hosting-control-panel {
      padding: 60px 0;
  }
  
  .reseller-hosting-control-panel-title {
      font-size: 30px;
  }
  
  .reseller-hosting-control-panel-section-title {
      font-size: 24px;
  }
  
  .reseller-hosting-control-panel-subtitle {
      font-size: 16px;
  }
  
  .reseller-hosting-control-panel-description {
      font-size: 16px;
  }
  
  .reseller-hosting-control-panel-feature-title {
      font-size: 18px;
  }
}

@media (max-width: 576px) {
  .reseller-hosting-control-panel-features {
      grid-template-columns: 1fr;
  }
  
  .reseller-hosting-control-panel-tab {
      padding: 10px 15px;
      font-size: 16px;
  }
  
  .reseller-hosting-control-panel-title {
      font-size: 26px;
  }
  
  .reseller-hosting-control-panel-section-title {
      font-size: 22px;
  }
  
  .reseller-hosting-control-panel-feature {
      padding: 20px;
  }
  
  .reseller-hosting-control-panel-feature-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
  }
  
  .reseller-hosting-control-panel-feature-icon i {
      font-size: 20px;
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.reseller-hosting-control-panel-feature {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

/* Staggered animation for features */
.reseller-hosting-control-panel-feature:nth-child(1) { animation-delay: 0.1s; }
.reseller-hosting-control-panel-feature:nth-child(2) { animation-delay: 0.2s; }
.reseller-hosting-control-panel-feature:nth-child(3) { animation-delay: 0.3s; }
.reseller-hosting-control-panel-feature:nth-child(4) { animation-delay: 0.4s; }
.reseller-hosting-control-panel-feature:nth-child(5) { animation-delay: 0.5s; }
.reseller-hosting-control-panel-feature:nth-child(6) { animation-delay: 0.6s; }
.reseller-hosting-control-panel-feature:nth-child(7) { animation-delay: 0.7s; }
.reseller-hosting-control-panel-feature:nth-child(8) { animation-delay: 0.8s; }
.reseller-hosting-control-panel-feature:nth-child(9) { animation-delay: 0.9s; }

/* Add subtle hover effect on items */
.reseller-hosting-control-panel-feature::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 50%
  );
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.reseller-hosting-control-panel-feature:hover::after {
  opacity: 0.1;
  animation: shine 1.5s ease-in-out;
}

@keyframes shine {
  0% {
      left: -50%;
      opacity: 0;
  }
  50% {
      opacity: 0.2;
  }
  100% {
      left: 120%;
      opacity: 0;
  }
}


/* ===================================================
    Migration Center Styles
=================================================== */


.reseller-migration-center {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #ffffff;
}

/* Background animations */
.reseller-migration-center-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.reseller-migration-center-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(var(--color-primary), 0.5);
  z-index: 1;
}

.reseller-migration-center-dot.dot1 {
  top: 20%;
  left: 10%;
  animation: floating 4s ease-in-out infinite;
}

.reseller-migration-center-dot.dot2 {
  top: 60%;
  left: 5%;
  animation: floating 5s ease-in-out infinite 1s;
}

.reseller-migration-center-dot.dot3 {
  top: 30%;
  left: 20%;
  animation: floating 4.5s ease-in-out infinite 0.5s;
}

.reseller-migration-center-dot.dot4 {
  top: 70%;
  left: 15%;
  animation: floating 5.5s ease-in-out infinite 1.5s;
}

.reseller-migration-center-dot.dot5 {
  top: 40%;
  left: 30%;
  animation: floating 6s ease-in-out infinite 2s;
}

.reseller-migration-center-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(var(--color-primary), 0.1), transparent);
  height: 1px;
  z-index: 1;
}

.reseller-migration-center-line.line1 {
  top: 20%;
  left: 5%;
  width: 30%;
  transform: rotate(30deg);
}

.reseller-migration-center-line.line2 {
  top: 40%;
  left: 0;
  width: 25%;
  transform: rotate(-15deg);
}

.reseller-migration-center-line.line3 {
  top: 65%;
  left: 5%;
  width: 20%;
  transform: rotate(45deg);
}

.reseller-migration-center-line.line4 {
  top: 80%;
  left: 15%;
  width: 35%;
  transform: rotate(-30deg);
}

/* Main content wrapper */
.reseller-migration-center-wrapper {
  position: relative;
  z-index: 5;
}

/* Title & description styles */
.reseller-migration-center-title {
  font-size: 42px;
  font-weight: 700;
  color: #00112C;
  margin-bottom: 20px;
  position: relative;
}

.reseller-migration-center-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  border-radius: 3px;
}

.reseller-migration-center-description {
  font-size: 16px;
  line-height: 1.6;
  color: #373737;
  margin-bottom: 30px;
}

.reseller-migration-center-highlight {
  color: rgb(var(--color-primary-dark));
  font-weight: 600;
}

/* Features list */
.reseller-migration-center-features {
  margin-bottom: 30px;
}

.reseller-migration-center-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reseller-migration-center-feature:last-child {
  margin-bottom: 0;
}

.reseller-migration-center-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgb(var(--color-primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.reseller-migration-center-feature-icon i {
  font-size: 14px;
}

.reseller-migration-center-feature p {
  margin: 0;
  font-size: 16px;
  color: #373737;
  line-height: 1.5;
}

/* CTA Buttons */
.reseller-migration-center-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.reseller-migration-center-button {
  background: rgb(var(--color-primary));
  color: #00112C;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgb(var(--color-primary));
}

.reseller-migration-center-button:hover {
  background: rgb(var(--color-primary-dark));
  border-color: rgb(var(--color-primary-dark));
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--color-primary), 0.3);
}

.reseller-migration-center-link {
  color: #00112C;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
}

.reseller-migration-center-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(var(--color-primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.reseller-migration-center-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Providers grid */
.reseller-migration-center-providers {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.reseller-migration-center-provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.reseller-migration-center-provider {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.reseller-migration-center-provider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  transition: height 0.3s ease;
}

.reseller-migration-center-provider:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reseller-migration-center-provider:hover::before {
  height: 100%;
}

.reseller-migration-center-provider img {
  max-width: 100%;
  max-height: 30px;
  transition: all 0.3s ease;
}

.reseller-migration-center-provider:hover img {
  transform: scale(1.1);
}

/* Provider tooltip */
.reseller-migration-center-provider-tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #00112C;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.reseller-migration-center-provider:hover .reseller-migration-center-provider-tooltip {
  bottom: 5px;
  opacity: 1;
}

/* Migration path animation */
.reseller-migration-center-path-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.reseller-migration-center-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.reseller-migration-center-path-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(var(--color-primary));
  box-shadow: 0 0 10px rgba(var(--color-primary), 0.8);
  z-index: 2;
  opacity: 0;
}

/* Floating animation */
@keyframes floating {
  0% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(5px, 10px);
  }
  100% {
      transform: translate(0, 0);
  }
}

/* Path animation keyframes defined in JS */
@keyframes moveDot {
  0% {
      top: 20%;
      left: 20%;
      opacity: 0;
  }
  10% {
      opacity: 1;
  }
  30% {
      top: 40%;
      left: 60%;
  }
  60% {
      top: 60%;
      left: 30%;
  }
  90% {
      opacity: 1;
  }
  100% {
      top: 80%;
      left: 70%;
      opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .reseller-migration-center-provider-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .reseller-migration-center-title {
      font-size: 36px;
  }
}

@media (max-width: 992px) {
  .reseller-migration-center {
      padding: 70px 0;
  }
  
  .reseller-migration-center-provider-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }
  
  .reseller-migration-center-providers {
      margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .reseller-migration-center {
      padding: 50px 0;
  }
  
  .reseller-migration-center-title {
      font-size: 30px;
  }
  
  .reseller-migration-center-provider-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .reseller-migration-center-cta {
      flex-direction: column;
      align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .reseller-migration-center-title {
      font-size: 26px;
  }
  
  .reseller-migration-center-description {
      font-size: 15px;
  }
  
  .reseller-migration-center-feature p {
      font-size: 15px;
  }
  
  .reseller-migration-center-provider-grid {
      gap: 15px;
  }
  
  .reseller-migration-center-provider {
      padding: 10px;
  }
  
  .reseller-migration-center-button {
      width: 100%;
      text-align: center;
  }
}



/* ===================================================
    Domain Reseller Hosting Styles
=================================================== */

.reseller-domain-reseller-hosting {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #ffffff;
}

/* Background elements for visual interest */
.reseller-domain-reseller-hosting-bg-element {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.reseller-domain-reseller-hosting-bg-element.bg-element-1 {
  width: 500px;
  height: 500px;
  background-color: rgba(var(--color-primary), 0.05);
  top: -250px;
  right: -100px;
}

.reseller-domain-reseller-hosting-bg-element.bg-element-2 {
  width: 400px;
  height: 400px;
  background-color: rgba(var(--color-primary-dark), 0.03);
  bottom: -200px;
  left: -150px;
}

/* Title and subtitle styles */
.reseller-domain-reseller-hosting-title {
  font-size: 42px;
  font-weight: 700;
  color: #00112C;
  margin-bottom: 20px;
  position: relative;
}

.reseller-domain-reseller-hosting-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  border-radius: 3px;
}

.reseller-domain-reseller-hosting-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #373737;
  margin-bottom: 40px;
}

.reseller-domain-reseller-hosting-highlight {
  color: rgb(var(--color-primary-dark));
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* Create underline effect for highlight */
.reseller-domain-reseller-hosting-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(var(--color-primary-dark), 0.3);
  transition: height 0.3s ease;
}

.reseller-domain-reseller-hosting-highlight:hover::after {
  height: 4px;
}

/* Chart styling */
.reseller-domain-reseller-hosting-chart {
  position: relative;
  height: 200px;
  margin-top: 30px;
  display: flex;
  align-items: flex-end;
}

.reseller-domain-reseller-hosting-chart-container {
  display: flex;
  align-items: flex-end;
  height: 170px;
  width: 100%;
  gap: 15px;
}

.reseller-domain-reseller-hosting-chart-bar {
  flex: 1;
  background: linear-gradient(to top, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  border-radius: 4px 4px 0 0;
  transition: height 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  max-width: 50px;
  height: 0;
}

.reseller-domain-reseller-hosting-chart-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 4px 4px 0 0;
}

.reseller-domain-reseller-hosting-chart-logo {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

.reseller-domain-reseller-hosting-chart-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Feature card styling */
.reseller-domain-reseller-hosting-feature {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  min-height: 250px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.reseller-domain-reseller-hosting-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  transition: height 0.3s ease;
}

.reseller-domain-reseller-hosting-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reseller-domain-reseller-hosting-feature:hover::before {
  height: 100%;
}

.reseller-domain-reseller-hosting-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(var(--color-primary), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.reseller-domain-reseller-hosting-feature:hover .reseller-domain-reseller-hosting-feature-icon {
  background-color: rgb(var(--color-primary));
}

.reseller-domain-reseller-hosting-feature-icon i {
  font-size: 24px;
  color: rgb(var(--color-primary-dark));
  transition: all 0.3s ease;
}

.reseller-domain-reseller-hosting-feature:hover .reseller-domain-reseller-hosting-feature-icon i {
  color: #fff;
}

.reseller-domain-reseller-hosting-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #00112C;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.reseller-domain-reseller-hosting-feature:hover .reseller-domain-reseller-hosting-feature-title {
  color: rgb(var(--color-primary-dark));
}

.reseller-domain-reseller-hosting-feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
  flex-grow: 1;
}

/* CTA section styling */
.reseller-domain-reseller-hosting-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reseller-domain-reseller-hosting-button {
  background-color: rgb(var(--color-primary));
  color: #00112C;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgb(var(--color-primary));
  box-shadow: 0 4px 15px rgba(var(--color-primary), 0.3);
}

.reseller-domain-reseller-hosting-button:hover {
  background-color: rgb(var(--color-primary-dark));
  border-color: rgb(var(--color-primary-dark));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--color-primary), 0.4);
}

.reseller-domain-reseller-hosting-link {
  color: #00112C;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  font-weight: 500;
}

.reseller-domain-reseller-hosting-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #00112C;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right center;
}

.reseller-domain-reseller-hosting-link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Animation keyframes */
@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

@keyframes slideInFromBottom {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Add shimmer effect */
@keyframes shimmer {
  0% {
      background-position: -100% 0;
  }
  100% {
      background-position: 100% 0;
  }
}

.shimmer-effect {
  position: relative;
  overflow: hidden;
}

.shimmer-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  transform: skewX(-20deg);
  pointer-events: none;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .reseller-domain-reseller-hosting-title {
      font-size: 36px;
  }
  
  .reseller-domain-reseller-hosting-feature {
      min-height: 280px;
  }
}

@media (max-width: 992px) {
  .reseller-domain-reseller-hosting {
      padding: 70px 0;
  }
  
  .reseller-domain-reseller-hosting-intro {
      text-align: center;
      margin-bottom: 50px;
  }
  
  .reseller-domain-reseller-hosting-title::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .reseller-domain-reseller-hosting-chart {
      justify-content: center;
  }
  
  .reseller-domain-reseller-hosting-feature {
      min-height: 250px;
      margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .reseller-domain-reseller-hosting {
      padding: 50px 0;
  }
  
  .reseller-domain-reseller-hosting-title {
      font-size: 30px;
  }
  
  .reseller-domain-reseller-hosting-subtitle {
      font-size: 16px;
  }
  
  .reseller-domain-reseller-hosting-feature-title {
      font-size: 18px;
  }
  
  .reseller-domain-reseller-hosting-button {
      width: 100%;
      text-align: center;
  }
}

@media (max-width: 576px) {
  .reseller-domain-reseller-hosting-title {
      font-size: 26px;
  }
  
  .reseller-domain-reseller-hosting-chart {
      height: 150px;
  }
  
  .reseller-domain-reseller-hosting-chart-container {
      height: 120px;
  }
  
  .reseller-domain-reseller-hosting-feature {
      padding: 20px;
  }
  
  .reseller-domain-reseller-hosting-feature-title {
      font-size: 17px;
  }
  
  .reseller-domain-reseller-hosting-feature-text {
      font-size: 14px;
  }
}


/* ======================================================================================================

                      Shared Hosting Pages



====================================================================================================== */





/* ===================================================
    Premium Shared Hosting Styles
=================================================== */

.shared-class-premium-hosting {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #ffffff;
}

/* Background elements for visual interest */
.shared-class-premium-hosting-bg-element {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shared-class-premium-hosting-bg-element.bg-element-1 {
  width: 500px;
  height: 500px;
  background-color: rgba(var(--color-primary), 0.03);
  top: -150px;
  right: -100px;
}

.shared-class-premium-hosting-bg-element.bg-element-2 {
  width: 300px;
  height: 300px;
  background-color: rgba(var(--color-primary-dark), 0.02);
  bottom: -100px;
  left: -50px;
}

.shared-class-premium-hosting-bg-element.bg-element-3 {
  width: 200px;
  height: 200px;
  background-color: rgba(var(--color-secondary), 0.02);
  top: 40%;
  left: 10%;
}

/* Header styles */
.shared-class-premium-hosting-header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.shared-class-premium-hosting-title {
  font-size: 42px;
  font-weight: 700;
  color: #00112C;
  margin-bottom: 20px;
  position: relative;
}

.shared-class-premium-hosting-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  transform: translateX(-50%);
  border-radius: 3px;
}

.shared-class-premium-hosting-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #373737;
  max-width: 850px;
  margin: 0 auto;
}

.shared-class-premium-hosting-highlight {
  color: rgb(var(--color-primary-dark));
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.shared-class-premium-hosting-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(var(--color-primary-dark), 0.3);
  transition: all 0.3s ease;
}

.shared-class-premium-hosting-highlight:hover::after {
  height: 4px;
  background-color: rgb(var(--color-primary));
}

/* Feature card styles */
.shared-class-premium-hosting-feature {
  background-color: #f6f9ff;
  border-radius: 15px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.shared-class-premium-hosting-feature.shared-class-premium-hosting-speed {
  background-color: #eef6ff;
  border-left: 3px solid #4a90e2;
}

.shared-class-premium-hosting-feature.shared-class-premium-hosting-support {
  background-color: #ecfbf0;
  border-left: 3px solid #37ce77;
}

.shared-class-premium-hosting-feature.shared-class-premium-hosting-security {
  background-color: #eef6ff;
  border-left: 3px solid #4a90e2;
}

.shared-class-premium-hosting-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.shared-class-premium-hosting-feature::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(var(--color-primary), 0.1), transparent);
  border-radius: 0 0 0 100%;
  z-index: -1;
}

.shared-class-premium-hosting-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.shared-class-premium-hosting-feature:hover .shared-class-premium-hosting-feature-icon {
  transform: rotateY(180deg);
}

.shared-class-premium-hosting-feature.shared-class-premium-hosting-speed .shared-class-premium-hosting-feature-icon {
  color: #4a90e2;
}

.shared-class-premium-hosting-feature.shared-class-premium-hosting-support .shared-class-premium-hosting-feature-icon {
  color: #37ce77;
}

.shared-class-premium-hosting-feature.shared-class-premium-hosting-security .shared-class-premium-hosting-feature-icon {
  color: #4a90e2;
}

.shared-class-premium-hosting-feature-icon i {
  font-size: 28px;
  transition: all 0.3s ease;
}

.shared-class-premium-hosting-feature-title {
  font-size: 22px;
  font-weight: 600;
  color: #00112C;
  margin-bottom: 15px;
}

.shared-class-premium-hosting-feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

/* Speed indicator animation */
.shared-class-premium-hosting-speed-indicator {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.shared-class-premium-hosting-speed-bar {
  flex: 1;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.shared-class-premium-hosting-speed-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #4a90e2, #83b8ff);
  border-radius: 5px;
  transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.shared-class-premium-hosting-speed-value {
  font-weight: 700;
  color: #4a90e2;
  font-size: 18px;
}

/* Support chat animation */
.shared-class-premium-hosting-support-indicator {
  margin-top: 20px;
  height: 70px;
  position: relative;
}

.shared-class-premium-hosting-support-chat {
  position: relative;
}

.shared-class-premium-hosting-support-bubble {
  position: absolute;
  background-color: white;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 150px;
  opacity: 0;
  transition: all 0.5s ease;
}

.shared-class-premium-hosting-support-bubble.bubble-1 {
  bottom: 10px;
  left: 0;
}

.shared-class-premium-hosting-support-bubble.bubble-2 {
  bottom: 50px;
  left: 30px;
}

.shared-class-premium-hosting-support-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

/* Security animation */
.shared-class-premium-hosting-security-indicator {
  margin-top: 20px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.shared-class-premium-hosting-security-shield {
  width: 50px;
  height: 60px;
  background-color: #4a90e2;
  border-radius: 5px 5px 50% 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.shared-class-premium-hosting-security-shield::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: white;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat 50% 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat 50% 50%;
  mask-size: cover;
  -webkit-mask-size: cover;
}

.shared-class-premium-hosting-security-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px 5px 50% 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
  }
  70% {
      box-shadow: 0 0 0 15px rgba(74, 144, 226, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
  }
}

/* CTA section */
.shared-class-premium-hosting-cta {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.shared-class-premium-hosting-button {
  display: inline-block;
  background: rgb(var(--color-primary));
  color: #00112C;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  border: 2px solid rgb(var(--color-primary));
  box-shadow: 0 5px 15px rgba(var(--color-primary), 0.3);
}

.shared-class-premium-hosting-button:hover {
  background: rgb(var(--color-primary-dark));
  border-color: rgb(var(--color-primary-dark));
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(var(--color-primary), 0.4);
}

.shared-class-premium-hosting-link {
  display: inline-block;
  color: #00112C;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  margin-left: 20px;
}

.shared-class-premium-hosting-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #00112C;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.shared-class-premium-hosting-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animation keyframes */
@keyframes floatUp {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s forwards;
}

/* Add shimmer effect */
@keyframes shimmer {
  0% {
      background-position: -100% 0;
  }
  100% {
      background-position: 200% 0;
  }
}

.shimmer-effect {
  position: relative;
  overflow: hidden;
}

.shimmer-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  transform: skewX(-20deg);
  pointer-events: none;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .shared-class-premium-hosting-title {
      font-size: 36px;
  }
  
  .shared-class-premium-hosting-feature {
      padding: 30px 25px;
  }
}

@media (max-width: 992px) {
  .shared-class-premium-hosting {
      padding: 70px 0;
  }
  
  .shared-class-premium-hosting-feature {
      margin-bottom: 40px;
  }
  
  .shared-class-premium-hosting-link {
      display: block;
      margin-left: 0;
      margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .shared-class-premium-hosting {
      padding: 50px 0;
  }
  
  .shared-class-premium-hosting-title {
      font-size: 30px;
  }
  
  .shared-class-premium-hosting-subtitle {
      font-size: 16px;
  }
  
  .shared-class-premium-hosting-feature-title {
      font-size: 20px;
  }
  
  .shared-class-premium-hosting-button {
      display: block;
      width: 100%;
  }
}

@media (max-width: 576px) {
  .shared-class-premium-hosting-title {
      font-size: 26px;
  }
  
  .shared-class-premium-hosting-feature {
      padding: 25px 20px;
  }
  
  .shared-class-premium-hosting-feature-title {
      font-size: 18px;
  }
  
  .shared-class-premium-hosting-feature-text {
      font-size: 14px;
  }
}

/*------------------------ Stress-free hosting and support section styles----------------- */

/* Stress-free hosting and support section styles */
.shared-stress-free-hosting {
  position: relative;
  padding: 80px 0;
  background-color: #F2F3F4; /* Using the bg2 color from main.css */
  overflow: hidden;
  font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.shared-stress-free-hosting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header styles */
.shared-stress-free-hosting__header {
  text-align: center;
  margin-bottom: 60px;
}

.shared-stress-free-hosting__title {
  font-size: 36px;
  font-weight: 700;
  color: #00112C;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.shared-stress-free-hosting__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgb(57, 239, 192), rgb(15, 189, 145));
  border-radius: 2px;
}

.shared-stress-free-hosting__subtitle {
  font-size: 18px;
  color: #373737;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content layout */
.shared-stress-free-hosting__content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image section */
.shared-stress-free-hosting__image-wrapper {
  flex: 1;
  max-width: 480px;
}

.shared-stress-free-hosting__image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
}

.shared-stress-free-hosting__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.95);
}

.shared-stress-free-hosting__image-container:hover .shared-stress-free-hosting__image {
  transform: scale(1.05);
}

/* Image decoration */
.shared-stress-free-hosting__image-shape {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 65%;
  height: 65%;
  background: linear-gradient(135deg, rgba(57, 239, 192, 0.3), rgba(15, 189, 145, 0.3));
  border-radius: 50% 50% 0 50%;
  z-index: -1;
  animation: rotate 20s linear infinite;
}

.shared-stress-free-hosting__pulse-dot {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 20px;
  height: 20px;
  background-color: rgb(57, 239, 192);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.shared-stress-free-hosting__pulse-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(57, 239, 192, 0.5);
  border-radius: 50%;
  animation: pulse-outer 2s ease-in-out infinite;
}

/* Features grid */
.shared-stress-free-hosting__features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.shared-stress-free-hosting__feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(57, 239, 192, 0.1);
}

.shared-stress-free-hosting__feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgb(57, 239, 192), rgb(15, 189, 145));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}

.shared-stress-free-hosting__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.shared-stress-free-hosting__feature:hover::before {
  transform: scaleX(1);
}

/* Feature icon */
.shared-stress-free-hosting__feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(57, 239, 192, 0.1);
  color: rgb(15, 189, 145);
  transition: all 0.3s ease;
}

.shared-stress-free-hosting__feature:hover .shared-stress-free-hosting__feature-icon {
  background-color: rgb(15, 189, 145);
  color: #fff;
}

.shared-stress-free-hosting__feature-icon svg {
  width: 24px;
  height: 24px;
}

/* Feature content */
.shared-stress-free-hosting__feature-content {
  flex: 1;
}

.shared-stress-free-hosting__feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #00112C;
  margin-bottom: 8px;
}

.shared-stress-free-hosting__feature-text {
  font-size: 14px;
  color: #373737;
}

/* Custom feature colors - using the site's color theme from main.css */
.shared-stress-free-hosting__feature[data-feature="support"] .shared-stress-free-hosting__feature-icon {
  background-color: rgba(57, 239, 192, 0.1);
  color: rgb(15, 189, 145);
}

.shared-stress-free-hosting__feature[data-feature="support"]:hover .shared-stress-free-hosting__feature-icon {
  background-color: rgb(15, 189, 145);
  color: white;
}

.shared-stress-free-hosting__feature[data-feature="response"] .shared-stress-free-hosting__feature-icon {
  background-color: rgba(18, 118, 140, 0.1);
  color: rgb(18, 118, 140);
}

.shared-stress-free-hosting__feature[data-feature="response"]:hover .shared-stress-free-hosting__feature-icon {
  background-color: rgb(18, 118, 140);
  color: white;
}

.shared-stress-free-hosting__feature[data-feature="satisfaction"] .shared-stress-free-hosting__feature-icon {
  background-color: rgba(57, 239, 192, 0.15);
  color: rgb(15, 189, 145);
}

.shared-stress-free-hosting__feature[data-feature="satisfaction"]:hover .shared-stress-free-hosting__feature-icon {
  background-color: rgb(57, 239, 192);
  color: #00112C;
}

.shared-stress-free-hosting__feature[data-feature="technical"] .shared-stress-free-hosting__feature-icon {
  background-color: rgba(18, 118, 140, 0.15);
  color: rgb(18, 118, 140);
}

.shared-stress-free-hosting__feature[data-feature="technical"]:hover .shared-stress-free-hosting__feature-icon {
  background-color: rgb(18, 118, 140);
  color: white;
}

/* Decorative elements */
.shared-stress-free-hosting__decoration {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.4;
  filter: blur(40px);
  pointer-events: none;
}

.shared-stress-free-hosting__decoration--top-right {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(57, 239, 192, 0.3), rgba(15, 189, 145, 0.1));
}

.shared-stress-free-hosting__decoration--bottom-left {
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: linear-gradient(225deg, rgba(18, 118, 140, 0.3), rgba(15, 189, 145, 0.1));
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-outer {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .shared-stress-free-hosting__content {
    flex-direction: column;
  }
  
  .shared-stress-free-hosting__image-wrapper {
    max-width: 400px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 768px) {
  .shared-stress-free-hosting {
    padding: 60px 0;
  }
  
  .shared-stress-free-hosting__title {
    font-size: 30px;
  }
  
  .shared-stress-free-hosting__subtitle {
    font-size: 16px;
  }
  
  .shared-stress-free-hosting__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .shared-stress-free-hosting__feature {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .shared-stress-free-hosting {
    padding: 40px 0;
  }
  
  .shared-stress-free-hosting__title {
    font-size: 26px;
  }
  
  .shared-stress-free-hosting__header {
    margin-bottom: 40px;
  }
  
  .shared-stress-free-hosting__image-wrapper {
    max-width: 100%;
  }
  
  .shared-stress-free-hosting__feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .shared-stress-free-hosting__feature-icon {
    margin-bottom: 15px;
  }
}



/*---------------------- Control Panel Section Styles------------------------------ */


.shared-control-panel-cpanel {
  position: relative;
  padding: 80px 0;
  background-color: #F2F3F4; /* Using the bg2 color from main.css */
  overflow: hidden;
  font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.shared-control-panel-cpanel__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.shared-control-panel-cpanel__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content Styles */
.shared-control-panel-cpanel__left {
  flex: 1;
  max-width: 600px;
}

.shared-control-panel-cpanel__title {
  font-size: 36px;
  font-weight: 700;
  color: #00112C;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.shared-control-panel-cpanel__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, rgb(57, 239, 192), rgb(15, 189, 145));
  border-radius: 2px;
}

.shared-control-panel-cpanel__description {
  font-size: 16px;
  line-height: 1.6;
  color: #373737;
  margin-bottom: 30px;
}

/* Features Grid */
.shared-control-panel-cpanel__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-bottom: 30px;
}

.shared-control-panel-cpanel__feature-item {
  /* display: flex; */
  align-items: center;
  gap: 10px;
  opacity: 1 !important;
  transform: none !important;
  display: flex !important;
  pointer-events: auto !important;
}

.shared-control-panel-cpanel__check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgba(57, 239, 192, 0.15);
  color: rgb(15, 189, 145);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.shared-control-panel-cpanel__feature-item:hover .shared-control-panel-cpanel__check-icon {
  background-color: rgb(15, 189, 145);
  color: white;
  transform: scale(1.1);
}

.shared-control-panel-cpanel__feature-text {
  font-size: 16px;
  color: #00112C;
  font-weight: 500;
}

/* CTA Button */
.shared-control-panel-cpanel__cta {
  margin-top: 30px;
}

.shared-control-panel-cpanel__button {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgb(15, 189, 145);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgb(15, 189, 145);
}

.shared-control-panel-cpanel__button:hover {
  background-color: transparent;
  color: rgb(15, 189, 145);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 189, 145, 0.15);
}

/* Right Image Styles */
.shared-control-panel-cpanel__right {
  flex: 1;
  max-width: 500px;
}

.shared-control-panel-cpanel__image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.shared-control-panel-cpanel__image-wrapper:hover {
  transform: translateY(-10px) perspective(1000px) rotateY(-5deg);
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.15);
}

.shared-control-panel-cpanel__image {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}

.shared-control-panel-cpanel__image-wrapper:hover .shared-control-panel-cpanel__image {
  transform: scale(1.02);
}

.shared-control-panel-cpanel__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(57, 239, 192, 0.1), rgba(18, 118, 140, 0.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.shared-control-panel-cpanel__image-wrapper:hover .shared-control-panel-cpanel__image-overlay {
  opacity: 1;
}

/* Decorative dots pattern */
.shared-control-panel-cpanel__image-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(57, 239, 192, 0.5) 1px, transparent 2px);
  background-size: 15px 15px;
  z-index: -1;
  opacity: 0.3;
  top: -20px;
  right: -20px;
  border-radius: 10px;
}

/* Background decorations */
.shared-control-panel-cpanel__decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.shared-control-panel-cpanel__decoration--top {
  top: -150px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(57, 239, 192, 0.2), rgba(15, 189, 145, 0.1));
}

.shared-control-panel-cpanel__decoration--bottom {
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(225deg, rgba(18, 118, 140, 0.2), rgba(15, 189, 145, 0.05));
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
  .shared-control-panel-cpanel__content {
    flex-direction: column;
  }
  
  .shared-control-panel-cpanel__left,
  .shared-control-panel-cpanel__right {
    max-width: 100%;
    width: 100%;
  }
  
  .shared-control-panel-cpanel__title {
    font-size: 32px;
  }
  
  .shared-control-panel-cpanel__image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .shared-control-panel-cpanel {
    padding: 60px 0;
  }
  
  .shared-control-panel-cpanel__title {
    font-size: 28px;
  }
  
  .shared-control-panel-cpanel__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .shared-control-panel-cpanel {
    padding: 40px 0;
  }
  
  .shared-control-panel-cpanel__title {
    font-size: 24px;
  }
  
  .shared-control-panel-cpanel__description {
    font-size: 15px;
  }
  
  .shared-control-panel-cpanel__feature-text {
    font-size: 14px;
  }
  
  .shared-control-panel-cpanel__button {
    width: 100%;
    text-align: center;
  }
}


/*---------------------------------- Free Website Migration Section Styles-------------------------------- */


.shared-free-website-migration {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.shared-free-website-migration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.shared-free-website-migration__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  background-color: rgba(217, 255, 236, 0.5); /* Light mint green background */
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(57, 239, 192, 0.1);
  position: relative;
  overflow: hidden;
}

/* Image styles */
.shared-free-website-migration__image-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.shared-free-website-migration__image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 10px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.shared-free-website-migration__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shared-free-website-migration__image-container:hover .shared-free-website-migration__image {
  transform: scale(1.03);
}

.shared-free-website-migration__backdrop {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 239, 192, 0.15);
  border-radius: 16px;
  z-index: -1;
}

/* Floating elements */
.shared-free-website-migration__floating-element {
  position: absolute;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 5px;
  width: 80px;
  height: 80px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shared-free-website-migration__floating-element img {
  max-width: 100%;
  max-height: 100%;
}

.shared-free-website-migration__floating-element--website {
  top: 20%;
  left: -30px;
  animation-delay: 0.5s;
}

.shared-free-website-migration__floating-element--document {
  bottom: 15%;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Text content styles */
.shared-free-website-migration__text-content {
  flex: 1;
  min-width: 300px;
}

.shared-free-website-migration__title {
  font-size: 36px;
  font-weight: 700;
  color: #00112C;
  margin-bottom: 20px;
  position: relative;
}

.shared-free-website-migration__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, rgb(57, 239, 192), rgb(15, 189, 145));
  border-radius: 3px;
}

.shared-free-website-migration__description {
  font-size: 16px;
  line-height: 1.6;
  color: #373737;
  margin-bottom: 30px;
}

/* CTA button */
.shared-free-website-migration__cta {
  margin-top: 25px;
}

.shared-free-website-migration__button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: rgb(15, 189, 145);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.shared-free-website-migration__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.shared-free-website-migration__button:hover {
  background-color: rgb(57, 239, 192);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.shared-free-website-migration__button:hover::before {
  left: 100%;
}

.shared-free-website-migration__button-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.shared-free-website-migration__button:hover .shared-free-website-migration__button-arrow {
  transform: translateX(5px);
}

/* Decorative elements */
.shared-free-website-migration__decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shared-free-website-migration__decoration--dots-1 {
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(rgb(57, 239, 192) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.3;
}

.shared-free-website-migration__decoration--dots-2 {
  bottom: 15%;
  left: 7%;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgb(15, 189, 145) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.2;
}

.shared-free-website-migration__decoration--circle {
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(57, 239, 192, 0.2), rgba(15, 189, 145, 0.1));
  border-radius: 50%;
  filter: blur(40px);
}

/* Responsive styles */
@media (max-width: 992px) {
  .shared-free-website-migration__content {
    padding: 25px;
  }
  
  .shared-free-website-migration__title {
    font-size: 32px;
  }
  
  .shared-free-website-migration__floating-element--website {
    top: 15%;
    left: -20px;
    width: 70px;
    height: 70px;
  }
  
  .shared-free-website-migration__floating-element--document {
    bottom: 10%;
    right: -15px;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .shared-free-website-migration {
    padding: 60px 0;
  }
  
  .shared-free-website-migration__content {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }
  
  .shared-free-website-migration__image-wrapper {
    order: 1;
    width: 100%;
  }
  
  .shared-free-website-migration__text-content {
    order: 2;
    width: 100%;
  }
  
  .shared-free-website-migration__title {
    font-size: 28px;
  }
  
  .shared-free-website-migration__description {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .shared-free-website-migration {
    padding: 40px 0;
  }
  
  .shared-free-website-migration__content {
    padding: 20px 15px;
    gap: 25px;
  }
  
  .shared-free-website-migration__title {
    font-size: 24px;
  }
  
  .shared-free-website-migration__button {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  
  .shared-free-website-migration__floating-element--website,
  .shared-free-website-migration__floating-element--document {
    width: 60px;
    height: 60px;
  }
}


/* ===================================================
    About Us Section Styles
=================================================== */


.about-what-we-do-section {
    padding: 80px 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
  }

  .about-what-we-do-bg-element {
    position: absolute;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(57, 239, 192, 0.1), rgba(18, 118, 140, 0.05));
    filter: blur(80px);
    z-index: 0;
  }

  .about-what-we-do-bg-element-1 {
    top: -200px;
    left: -200px;
  }

  .about-what-we-do-bg-element-2 {
    bottom: -200px;
    right: -200px;
  }

  .about-what-we-do-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .about-what-we-do-heading {
    text-align: center;
    margin-bottom: 60px;
  }

  .about-what-we-do-title {
    font-size: 45px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .about-what-we-do-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-primary-dark);
    border-radius: 2px;
  }

  .about-what-we-do-subtitle {
    font-size: 18px;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
  }

  .about-what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about-what-we-do-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    height: 100%;
    position: relative;
  }

  .about-what-we-do-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .about-what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    border-radius: 6px 0 0 6px;
  }

  .about-what-we-do-card-accent {
    width: 6px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    border-radius: 6px 0 0 6px;
  }

  .about-what-we-do-card-content {
    padding: 30px;
    flex-grow: 1;
  }

  .about-what-we-do-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
  }

  .about-what-we-do-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
  }

  .about-what-we-do-highlight {
    color: var(--color-primary-dark);
    font-weight: 600;
  }

  .about-what-we-do-card-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(57, 239, 192, 0.3);
    transition: var(--transition);
    transform: translateY(0);
  }

  .about-what-we-do-card:hover .about-what-we-do-card-icon {
    transform: translateY(-5px) scale(1.1);
  }

  .about-what-we-do-card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
  }

  @media (max-width: 992px) {
    .about-what-we-do-title {
      font-size: 36px;
    }
    
    .about-what-we-do-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .about-what-we-do-section {
      padding: 60px 0;
    }
    
    .about-what-we-do-title {
      font-size: 32px;
    }
    
    .about-what-we-do-subtitle {
      font-size: 16px;
    }
    
    .about-what-we-do-card-title {
      font-size: 18px;
    }
  }

  @media (max-width: 480px) {
    .about-what-we-do-section {
      padding: 40px 0;
    }
    
    .about-what-we-do-title {
      font-size: 28px;
    }
    
    .about-what-we-do-heading {
      margin-bottom: 40px;
    }
    
    .about-what-we-do-card-content {
      padding: 25px 20px;
    }
  }




  /*---------------------------------- why-go-with-eurohost -------------------------------- */



  .about-why-go-with-eurohost {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
  }

  /* Background decorative elements */
  .about-why-go-with-eurohost-bg {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
  }

  .about-why-go-with-eurohost-bg-1 {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    border-radius: 50%;
  }

  .about-why-go-with-eurohost-bg-2 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary-dark) 0%, transparent 70%);
    border-radius: 50%;
  }

  .about-why-go-with-eurohost-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .about-why-go-with-eurohost-title {
    font-size: 45px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }

  .about-why-go-with-eurohost-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
    border-radius: 4px;
  }

  .about-why-go-with-eurohost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .about-why-go-with-eurohost-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }

  .about-why-go-with-eurohost-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .about-why-go-with-eurohost-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 239, 192, 0.05), rgba(18, 118, 140, 0.05));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
  }

  .about-why-go-with-eurohost-card:hover::before {
    opacity: 1;
  }

  .about-why-go-with-eurohost-icon-wrapper {
    width: 120px;
    height: 100px;
    margin: -1px auto 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-why-go-with-eurohost-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-primary));
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    transition: var(--transition);
  }

  .about-why-go-with-eurohost-card:hover .about-why-go-with-eurohost-icon-bg {
    background-color: black;
  }

  .about-why-go-with-eurohost-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    fill: #fff;
  }

  .about-why-go-with-eurohost-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .about-why-go-with-eurohost-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }

  .about-why-go-with-eurohost-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition);
  }

  .about-why-go-with-eurohost-card:hover .about-why-go-with-eurohost-card-title::after {
    width: 80px;
    background-color: var(--color-primary-dark);
  }

  .about-why-go-with-eurohost-features {
    list-style: none;
    margin-top: 10px;
  }

  .about-why-go-with-eurohost-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--color-text);
    line-height: 1.5;
  }

  .about-why-go-with-eurohost-feature:last-child {
    margin-bottom: 0;
  }

  .about-why-go-with-eurohost-feature-icon {
    flex-shrink: 0;
    margin-right: 12px;
    color: var(--color-primary-dark);
  }

  .about-why-go-with-eurohost-cta {
    text-align: center;
    margin-top: 50px;
  }

  .about-why-go-with-eurohost-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
    color: var(--color-dark);
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(57, 239, 192, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
  }

  .about-why-go-with-eurohost-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(57, 239, 192, 0.4);
  }

  /* Responsive styles */
  @media (max-width: 992px) {
    .about-why-go-with-eurohost-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .about-why-go-with-eurohost {
      padding: 60px 0;
    }

    .about-why-go-with-eurohost-title {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .about-why-go-with-eurohost-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
    }

    .about-why-go-with-eurohost-icon-wrapper {
      width: 100px;
      height: 85px;
    }

    .about-why-go-with-eurohost-icon {
      width: 40px;
      height: 40px;
    }
  }

  @media (max-width: 480px) {
    .about-why-go-with-eurohost-title {
      font-size: 28px;
    }

    .about-why-go-with-eurohost-content {
      padding: 25px 20px;
    }

    .about-why-go-with-eurohost-card-title {
      font-size: 20px;
    }

    .about-why-go-with-eurohost-feature {
      font-size: 14px;
    }
  }


/*---------------------------------- About Our Word Answer Section Styles-------------------------------- */


  .about-our-word-answer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: var(--font-primary, "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.about-our-word-answer-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.about-our-word-answer-title {
    font-size: 45px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-our-word-answer-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(var(--color-primary));
    border-radius: 2px;
}

/* Timeline styles */
.about-our-word-answer-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.about-our-word-answer-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #e9ecef;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.about-our-word-answer-item {
    position: relative;
    margin-bottom: 70px;
    display: flex;
    align-items: start;
    z-index: 2;
}


.about-our-word-answer-item:last-child {
    margin-bottom: 0;
}

.about-our-word-answer-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.about-our-word-answer-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
    border-radius: 20% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 25px rgba(var(--color-primary-dark), 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.about-our-word-answer-item:hover .about-our-word-answer-number {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 35px rgba(var(--color-primary-dark), 0.4);
}

.about-our-word-answer-content {
    width: calc(50% - 35px - 30px);
    padding: 25px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.about-our-word-answer-item:hover .about-our-word-answer-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.about-our-word-answer-content::before {
    content: '';
    position: absolute;
    border-style: solid;
    top: 22px;
}

.about-our-word-answer-item:nth-child(odd) .about-our-word-answer-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #fff;
}

.about-our-word-answer-item:nth-child(even) .about-our-word-answer-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent #fff transparent transparent;
}

.about-our-word-answer-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #00112C;
    margin-bottom: 10px;
}

.about-our-word-answer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #596677;
}

/* Highlight colors */
.about-our-word-answer-highlight {
    color: rgb(var(--color-primary-dark));
    font-weight: 500;
}

/* Animation for items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-our-word-answer-item {
    animation: fadeInUp 0.6s ease-out both;
    animation-play-state: paused;
}

.about-our-word-answer-item.visible {
    animation-play-state: running;
}

.about-our-word-answer-item:nth-child(1) {
    animation-delay: 0.1s;
}
.about-our-word-answer-item:nth-child(2) {
    animation-delay: 0.3s;
}
.about-our-word-answer-item:nth-child(3) {
    animation-delay: 0.5s;
}
.about-our-word-answer-item:nth-child(4) {
    animation-delay: 0.7s;
}
.about-our-word-answer-item:nth-child(5) {
    animation-delay: 0.9s;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-our-word-answer-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-our-word-answer-timeline::before {
        left: 50px;
    }

    .about-our-word-answer-item,
    .about-our-word-answer-item:nth-child(odd) {
        flex-direction: row;
    }

    .about-our-word-answer-content {
        width: calc(100% - 50px - 70px);
        margin-left: 30px;
    }

    .about-our-word-answer-item:nth-child(odd) .about-our-word-answer-content::before,
    .about-our-word-answer-item:nth-child(even) .about-our-word-answer-content::before {
        left: -15px;
        border-width: 15px 15px 15px 0;
        border-color: transparent #fff transparent transparent;
    }
}

@media (max-width: 576px) {
    .about-our-word-answer-section {
        margin: 50px auto;
    }

    .about-our-word-answer-title {
        font-size: 30px;
    }

    .about-our-word-answer-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .about-our-word-answer-content {
        width: calc(100% - 50px - 40px);
        padding: 20px;
    }

    .about-our-word-answer-subtitle {
        font-size: 18px;
    }

    .about-our-word-answer-text {
        font-size: 14px;
    }
}

/* Optional glow effect */
.about-our-word-answer-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--color-primary), 0.2), transparent 70%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}



/*---------------------------------- About our-support-team-section-------------------------------- */



.about-our-support-team-section {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Left content styles */
.about-our-support-team-content {
  flex: 1;
  min-width: 300px;
  padding-right: 50px;
  position: relative;
  z-index: 2;
}

.about-our-support-team-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--color-text);
  position: relative;
  display: inline-block;
}

.about-our-support-team-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: rgb(var(--color-primary));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.about-our-support-team-content:hover .about-our-support-team-title::after {
  width: 120px;
}

.about-our-support-team-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.about-our-support-team-highlight {
  color: rgb(var(--color-primary-dark));
  font-weight: 600;
}

.about-our-support-team-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(var(--color-primary), 0.1);
  border-radius: 50px;
  padding: 8px 16px;
  margin-top: 15px;
  margin-right: 15px;
  font-weight: 600;
  font-size: 15px;
  color: rgb(var(--color-primary-dark));
  transition: all 0.3s ease;
}

.about-our-support-team-badge:hover {
  background-color: rgba(var(--color-primary), 0.2);
  transform: translateY(-3px);
}

.about-our-support-team-badge i {
  margin-right: 8px;
  font-size: 18px;
}

.about-our-support-team-badges {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Right illustration styles */
.about-our-support-team-illustration {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-our-support-team-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-normal);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-medium);
  transition: all 0.5s ease;
}

.about-our-support-team-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-our-support-team-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-our-support-team-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.about-our-support-team-shape-1 {
  width: 200px;
  height: 200px;
  background: rgb(var(--color-primary));
  top: -40px;
  right: 10%;
}

.about-our-support-team-shape-2 {
  width: 150px;
  height: 150px;
  background: rgb(var(--color-accent));
  bottom: 5%;
  right: 20%;
}

.about-our-support-team-shape-3 {
  width: 80px;
  height: 80px;
  background: rgb(var(--color-primary-dark));
  top: 30%;
  right: 5%;
}

/* Image enhancement */
.about-our-support-team-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-medium);
  transition: all 0.5s ease;
  max-width: 550px;
  width: 100%;
}

.about-our-support-team-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--color-accent), 0.2), transparent);
  z-index: 1;
  opacity: 0.7;
  border-radius: var(--radius-normal);
}

.about-our-support-team-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.about-our-support-team-image-container img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-normal);
  transition: transform 1.5s ease;
}

.about-our-support-team-image-container:hover img {
  transform: scale(1.03);
}

/* Floating elements */
.about-our-support-team-floating-element {
  position: absolute;
  z-index: 3;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floating 4s ease-in-out infinite;
}

.about-our-support-team-float-1 {
  top: 20px;
  right: 30px;
  padding: 10px 15px;
  animation-delay: 0.5s;
  background-color: rgb(var(--color-accent));
  color: white;
  font-weight: 600;
}

.about-our-support-team-float-2 {
  bottom: 30px;
  left: 20px;
  animation-delay: 1s;
}

@keyframes floating {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive styles */
@media (max-width: 1100px) {
  .about-our-support-team-section {
      padding: 60px 20px;
  }
  
  .about-our-support-team-title {
      font-size: 36px;
  }
  
  .about-our-support-team-floating-element {
      display: none;
  }
}

@media (max-width: 900px) {
  .about-our-support-team-section {
      flex-direction: column;
  }
  
  .about-our-support-team-content {
      padding-right: 0;
      margin-bottom: 40px;
  }
  
  .about-our-support-team-title {
      font-size: 32px;
  }
  
  .about-our-support-team-image-container {
      max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-our-support-team-section {
      padding: 40px 20px;
  }
  
  .about-our-support-team-title {
      font-size: 28px;
  }
  
  .about-our-support-team-paragraph {
      font-size: 15px;
  }
  
  .about-our-support-team-badge {
      width: 100%;
      margin-right: 0;
      justify-content: center;
      margin-bottom: 10px;
  }
  
  .about-our-support-team-badges {
      flex-direction: column;
  }
}



/* ===================================================
  Minecraft Vps Section Styles
======================================================*/


  .minecraft-vps-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .minecraft-vps-hero-image:hover {
    transform: translateY(-10px);
  }
  
  /* Minecraft VPS Pricing Table */
  .minecraft-vps-pricing-badge {
    display: inline-block;
    padding: 3px 8px;
    background-color: rgb(var(--color-primary));
    color: #00112C;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 5px;
  }
  
  /* Minecraft VPS Features */
  .minecraft-vps-features-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }
  
  .minecraft-vps-features-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('images/minecraft/pattern-bg.png');
    opacity: 0.05;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  /* Minecraft Setup Process */
  .minecraft-vps-setup-process {
    padding: 80px 0;
    position: relative;
  }
  
  .minecraft-vps-setup-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .minecraft-vps-setup-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .minecraft-vps-setup-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgb(var(--color-primary));
    color: #00112C;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
  }
  
  /* Minecraft Server Types */
  .minecraft-vps-server-types {
    padding: 80px 0;
  }
  
  .minecraft-vps-server-type-card {
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
  }
  
  .minecraft-vps-server-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .minecraft-vps-server-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
  }
  
  .minecraft-vps-server-type-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .minecraft-vps-server-type-desc {
    flex-grow: 1;
  }
  
  /* Minecraft Security Features */
  .minecraft-vps-security-section {
    padding: 80px 0;
    background-color: #f2f3f4;
  }
  
  .minecraft-vps-security-card {
    position: relative;
    padding: 30px 20px 20px 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
  }
  
  .minecraft-vps-security-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
  }
  
  .minecraft-vps-security-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  /* Minecraft FAQ Section */
  .minecraft-vps-faq-section {
    padding: 80px 0;
  }
  
  .minecraft-vps-faq-section .accordion li a {
    font-weight: 600;
    color: #00112C;
  }
  
  .minecraft-vps-faq-section .accordion li a.active {
    color: rgb(var(--color-primary-dark));
  }
  
  /* Minecraft Community Section */
  .minecraft-vps-community-section {
    padding: 60px 0;
    background-color: #002143;
    color: white;
  }
  
  .minecraft-vps-community-title {
    color: white;
    margin-bottom: 30px;
  }
  
  .minecraft-vps-community-stat {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .minecraft-vps-community-number {
    font-size: 48px;
    font-weight: 700;
    color: rgb(var(--color-primary));
    margin-bottom: 10px;
  }
  
  .minecraft-vps-community-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
  }



  /* Minecraft VPS Addons Available Section Styles */

  /* Minecraft VPS Addons Available Section Styles */
.minecraft-vps-addons-available {
  position: relative;
  padding: 80px 0;
  background-color: var(--color-white); /* White background instead of dark blue */
  color: #373737; /* Using standard text color from your main.css */
  overflow: hidden;
}

.minecraft-vps-addons-available-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/api/placeholder/1920/1080");
  background-size: cover;
  background-position: center;
  opacity: 0.04; /* Reduced opacity for light background */
  z-index: 0;
}

.minecraft-vps-addons-available .container {
  position: relative;
  z-index: 1;
}

.minecraft-vps-addons-available-header {
  text-align: center;
  margin-bottom: 40px;
}

.minecraft-vps-addons-available-header-alert {
  display: inline-block;
  color: rgb(15, 189, 145); /* Primary dark color */
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  padding: 8px 20px;
  border-radius: 50px;
  background-color: rgba(57, 239, 192, 0.1); /* Primary color with low opacity */
  letter-spacing: 1px;
}

.minecraft-vps-addons-available-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #282337; /* Using header color from your main.css */
}

.minecraft-vps-addons-available-subtitle {
  font-size: 18px;
  color: #373737; /* Using text color from your main.css */
  max-width: 700px;
  margin: 0 auto;
}

.minecraft-vps-addons-available-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.minecraft-vps-addons-available-item {
  background-color: #f8f9fa; /* Light gray background for items */
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(57, 239, 192, 0.2); /* Using primary color */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.minecraft-vps-addons-available-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgb(57, 239, 192); /* Full primary color on hover */
}

.minecraft-vps-addons-available-header-row {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(57, 239, 192, 0.1); /* Primary color with low opacity */
  border-bottom: 1px solid rgba(57, 239, 192, 0.2);
}

.minecraft-vps-addons-available-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(57, 239, 192, 0.2);
  border-radius: 50%;
  margin-right: 15px;
  color: rgb(15, 189, 145); /* Primary dark color for icons */
  font-size: 14px;
}

.minecraft-vps-addons-available-item-title {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #282337; /* Using header color from your main.css */
}

/* Custom Toggle Switch */
.minecraft-vps-addons-available-toggle {
  position: relative;
}

.minecraft-vps-addons-available-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.minecraft-vps-addons-available-toggle-label {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.1); /* Subtle gray for inactive toggle */
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.minecraft-vps-addons-available-toggle-label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  transition: all 0.3s ease;
}

.minecraft-vps-addons-available-checkbox:checked + .minecraft-vps-addons-available-toggle-label {
  background-color: rgb(57, 239, 192); /* Primary color for active toggle */
}

.minecraft-vps-addons-available-checkbox:checked + .minecraft-vps-addons-available-toggle-label::after {
  transform: translateX(20px);
}

.minecraft-vps-addons-available-checkbox:focus + .minecraft-vps-addons-available-toggle-label {
  box-shadow: 0 0 0 2px rgba(57, 239, 192, 0.5);
}

.minecraft-vps-addons-available-content {
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #373737; /* Using text color from your main.css */
}

.minecraft-vps-addons-available-content p {
  margin: 0;
  color: #373737; /* Using text color from your main.css */
}

.minecraft-vps-addons-available-content strong {
  color: rgb(15, 189, 145); /* Primary dark color */
  font-weight: 600;
}

.minecraft-vps-addons-available-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.minecraft-vps-addons-available-pricing-notice {
  font-size: 14px;
  font-weight: 700;
  color: rgb(18, 118, 140); /* Secondary color for pricing notice */
}

.minecraft-vps-addons-available-continue {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #00112C; /* Dark text for better contrast on light button */
  background-color: rgb(57, 239, 192); /* Primary color background */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.minecraft-vps-addons-available-continue:hover {
  background-color: rgb(15, 189, 145); /* Primary dark color on hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(57, 239, 192, 0.4);
}




/*--------------------------- included-with-plans-section----------------------- */





.minecraft-vps-included-with-plans-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  font-family: "Galano Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.minecraft-vps-included-with-plans-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Background element */
.minecraft-vps-included-with-plans-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(57, 239, 192, 0.05) 2px, transparent 2px);
  background-size: 25px 25px;
  z-index: 1;
}

/* Header styles */
.minecraft-vps-included-with-plans-tag {
  font-size: 16px;
  font-weight: 600;
  color: rgb(57, 239, 192);
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.minecraft-vps-included-with-plans-header {
  text-align: center;
  margin-bottom: 50px;
}

.minecraft-vps-included-with-plans-title {
  font-size: 42px;
  font-weight: 700;
  color: #282337;
  margin: 0 0 40px;
  text-align: center;
}

/* Features grid */
.minecraft-vps-included-with-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.minecraft-vps-included-with-plans-feature {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(57, 239, 192, 0.1);
}

.minecraft-vps-included-with-plans-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgb(57, 239, 192);
}

/* Icon container */
.minecraft-vps-included-with-plans-icon {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(57, 239, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.minecraft-vps-included-with-plans-feature:hover .minecraft-vps-included-with-plans-icon {
  background-color: rgb(57, 239, 192);
  transform: scale(1.1);
}

.minecraft-vps-included-with-plans-icon i {
  font-size: 24px;
  color: rgb(15, 189, 145);
  transition: all 0.3s ease;
}

.minecraft-vps-included-with-plans-feature:hover .minecraft-vps-included-with-plans-icon i {
  color: #fff;
}

/* Feature content */
.minecraft-vps-included-with-plans-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #282337;
  margin-bottom: 15px;
}

.minecraft-vps-included-with-plans-feature-text {
  font-size: 15px;
  line-height: 1.7;
  color: #373737;
  margin-bottom: 15px;
}

.minecraft-vps-included-with-plans-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(15, 189, 145);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.minecraft-vps-included-with-plans-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(15, 189, 145);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.minecraft-vps-included-with-plans-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.minecraft-vps-included-with-plans-link:hover {
  color: rgb(57, 239, 192);
}

/* Accent element */
.minecraft-vps-included-with-plans-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, rgb(57, 239, 192), rgb(15, 189, 145));
  transition: height 0.3s ease;
}

.minecraft-vps-included-with-plans-feature:hover::before {
  height: 100%;
}

/* Responsive styles */
@media (max-width: 992px) {
  .minecraft-vps-included-with-plans-section {
      padding: 60px 0;
  }
  
  .minecraft-vps-included-with-plans-title {
      font-size: 36px;
  }
  
  .minecraft-vps-included-with-plans-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .minecraft-vps-included-with-plans-grid {
      grid-template-columns: 1fr;
  }
  
  .minecraft-vps-included-with-plans-title {
      font-size: 32px;
  }
  
  .minecraft-vps-included-with-plans-feature {
      padding: 25px;
  }
}

@media (max-width: 576px) {
  .minecraft-vps-included-with-plans-section {
      padding: 40px 0;
  }
  
  .minecraft-vps-included-with-plans-title {
      font-size: 28px;
      margin-bottom: 30px;
  }
  
  .minecraft-vps-included-with-plans-tag {
      font-size: 14px;
  }
  
  .minecraft-vps-included-with-plans-feature-title {
      font-size: 18px;
  }
}

/* Animation for feature cards */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.minecraft-vps-included-with-plans-feature {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.minecraft-vps-included-with-plans-feature:nth-child(1) {
  animation-delay: 0.1s;
}

.minecraft-vps-included-with-plans-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.minecraft-vps-included-with-plans-feature:nth-child(3) {
  animation-delay: 0.3s;
}

.minecraft-vps-included-with-plans-feature:nth-child(4) {
  animation-delay: 0.4s;
}

.minecraft-vps-included-with-plans-feature:nth-child(5) {
  animation-delay: 0.5s;
}

.minecraft-vps-included-with-plans-feature:nth-child(6) {
  animation-delay: 0.6s;
}





.os-selection-wrapper {
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Background elements */
.os-selection-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--color-primary), 0.1), rgba(var(--color-primary-dark), 0.05));
    z-index: 0;
}

.os-selection-bg-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.os-selection-bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    opacity: 0.7;
}

.os-selection-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.os-selection-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.os-selection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(var(--color-primary));
    border-radius: 10px;
}

.os-selection-description {
    font-size: 18px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Main content layout */
.os-selection-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Sidebar styles */
.os-selection-sidebar {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 20px;
    position: relative;
    height: max-content;
    overflow: hidden;
    z-index: 1;
}

.os-selection-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
    z-index: 2;
}

.os-sidebar-heading {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.os-selection-sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.os-selection-sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

.os-selection-sidebar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
    opacity: 0;
    transition: var(--transition);
}

.os-selection-sidebar-item:hover {
    background: #eef4ff;
    transform: translateX(5px);
}

.os-selection-sidebar-item.active {
    background: #f0faff;
    border-color: rgba(var(--color-primary), 0.3);
}

.os-selection-sidebar-item.active::before {
    opacity: 1;
}

.os-sidebar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.os-sidebar-icon img {
    max-width: 24px;
    max-height: 24px;
    transition: var(--transition);
}

.os-selection-sidebar-item:hover .os-sidebar-icon {
    transform: scale(1.1);
}

.os-sidebar-info {
    flex: 1;
}

.os-sidebar-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
    transition: var(--transition);
}

.os-sidebar-version {
    font-size: 12px;
    color: var(--color-text-light);
    opacity: 0.8;
}

/* Card container */
.os-selection-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.os-selection-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    display: none;
}

.os-selection-card.active {
    display: block;
    animation: cardEntrance 0.5s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
}

.os-selection-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: perspective(1000px) translateY(-5px);
}

/* Card header */
.os-selection-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.os-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f0f7ff, #e9f5fe);
    box-shadow: 0 8px 16px rgba(0, 33, 67, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(var(--color-primary), 0.1);
}

.os-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.os-selection-card:hover .os-icon {
    transform: scale(1.1);
}

.os-selection-card-titles {
    flex: 1;
}

.os-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 5px;
}

.os-subtitle {
    font-size: 16px;
    color: rgb(var(--color-primary-dark));
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.os-subtitle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60%;
    height: 2px;
    background: rgba(var(--color-primary), 0.3);
    border-radius: 10px;
}

.os-version {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 8px;
    display: inline-block;
    padding: 3px 10px;
    background: #f0f7ff;
    border-radius: 20px;
    font-weight: 500;
}

/* Card content */
.os-description {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 25px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 25px;
}

.os-selection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.os-selection-feature {
    padding: 20px;
    background: #f9fbff;
    border-radius: 10px;
    border: 1px solid rgba(var(--color-primary), 0.1);
    position: relative;
    transition: var(--transition);
}

.os-selection-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #f0faff;
}

.os-selection-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.os-selection-feature-title::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgb(var(--color-primary));
    border-radius: 50%;
    margin-right: 10px;
}

.os-selection-feature-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Why choose section */
.os-selection-why {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.os-selection-why::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgb(var(--color-primary));
    border-radius: 10px;
}

.os-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.os-feature-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #f5f9ff;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid rgb(var(--color-primary));
}

.os-feature-item:hover {
    background: #eef4ff;
    transform: translateX(5px);
}

.os-feature-icon {
    color: rgb(var(--color-primary));
    margin-right: 12px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
}

.os-feature-text {
    flex: 1;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.5;
}

.os-feature-text strong {
    color: var(--color-text);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

/* Performance indicator */
.os-performance-indicator {
    margin-top: 30px;
    background: #f5f9ff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(var(--color-primary), 0.1);
}

.os-performance-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    text-align: center;
}

.os-performance-bars {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.os-performance-metric {
    flex: 1;
}

.os-metric-label {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.os-metric-value {
    font-weight: 600;
    color: var(--color-text);
}

.os-metric-bar-container {
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.os-metric-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.19, 1, 0.22, 1);
    width: 0;
}

.os-metric-bar.speed {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
}

.os-metric-bar.stability {
    background: linear-gradient(to right, #10b981, #34d399);
}

.os-metric-bar.security {
    background: linear-gradient(to right, #f59e0b, #fbbf24);
}

/* CTA button */
.os-selection-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.os-selection-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(to right, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
    color: var(--color-text);
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(var(--color-primary), 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.os-selection-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(var(--color-primary-dark)), rgb(var(--color-primary)));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.os-selection-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--color-primary), 0.4);
}

.os-selection-btn:hover::before {
    opacity: 1;
}

.os-selection-btn-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.os-selection-btn:hover .os-selection-btn-icon {
    transform: translateX(4px);
}

/* Mobile view adjustments */
@media (max-width: 992px) {
    .os-selection-content {
        grid-template-columns: 1fr;
    }

    .os-selection-sidebar {
        margin-bottom: 30px;
    }

    .os-selection-sidebar-items {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .os-selection-title {
        font-size: 32px;
    }

    .os-selection-description {
        font-size: 16px;
    }

    .os-title {
        font-size: 22px;
    }

    .os-selection-feature-title {
        font-size: 16px;
    }

    .os-selection-why {
        font-size: 18px;
    }

    .os-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .os-selection-wrapper {
        padding: 40px 0;
    }

    .os-selection-title {
        font-size: 28px;
    }

    .os-selection-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .os-selection-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .os-icon-container {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .os-selection-features {
        grid-template-columns: 1fr;
    }

    .os-performance-bars {
        flex-direction: column;
    }

    .os-selection-sidebar-items {
        grid-template-columns: 1fr;
    }
}

/* Animation keyframes */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0) perspective(1000px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) perspective(1000px) rotateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--color-primary), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--color-primary), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--color-primary), 0);
    }
}

.fadeUp {
    animation: fadeUp 0.5s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.blurred-line {
            width: 100%;
            height: 2px;
            background-color: black;
            filter: blur(4px); /* Adjust the blur level here */
}