/********** Template CSS **********/
:root {
    --primary: #7c09ff;
    --secondary: #0000ff;
    --third: #f59e0b;
    --success: #7EBC12;
    --light: #F2F2F2;
    --dark: #1D2833;
    --mainp: #7c09ff;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/* ===== CHATBOT STYLES ===== */
:root {
  --chatbot-bg: #ffffff;
  --chatbot-header-bg: #7c09ff;
  --chatbot-text: #333333;
  --chatbot-border: #e0e0e0;
  --chatbot-accent: #7c09ff;
  --chatbot-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  --chatbot-bg: #2d3748;
  --chatbot-header-bg: #1a202c;
  --chatbot-text: #f7fafc;
  --chatbot-border: #4a5568;
  --chatbot-accent: #7c09ff;
  --chatbot-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Toggle Button */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--chatbot-accent);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--chatbot-shadow);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Chat Container */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  height: 500px;
  background: var(--chatbot-bg);
  border-radius: 15px;
  box-shadow: var(--chatbot-shadow);
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.chatbot-container.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

/* Header */
.chatbot-header {
  background: var(--chatbot-header-bg);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-title h5 {
  margin: 0;
  font-weight: 600;
}

.chatbot-actions {
  display: flex;
  gap: 10px;
}

.theme-toggle, .close-chatbot {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

/* Messages */
.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.message {
  max-width: 80%;
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 18px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.message-bot {
  align-self: flex-start;
  background: rgba(108, 99, 255, 0.1);
  color: var(--chatbot-text);
  border-top-left-radius: 5px;
}

.message-user {
  align-self: flex-end;
  background: var(--chatbot-accent);
  color: white;
  border-top-right-radius: 5px;
}

.message-time {
  font-size: 11px;
  color: var(--chatbot-text);
  opacity: 0.7;
  margin-top: 5px;
  text-align: right;
}

/* Quick Replies */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 15px 15px;
}

.quick-reply {
  background: rgba(108, 99, 255, 0.1);
  color: var(--chatbot-accent);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-reply:hover {
  background: var(--chatbot-accent);
  color: white;
}

/* Input Area */
.chatbot-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid var(--chatbot-border);
  background: var(--chatbot-bg);
}

.chatbot-input input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--chatbot-border);
  border-radius: 30px;
  background: var(--chatbot-bg);
  color: var(--chatbot-text);
  outline: none;
}

.chatbot-input button {
  background: var(--chatbot-accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.chatbot-input button:hover {
  transform: scale(1.05);
}

.attachment-btn {
  background: transparent !important;
  color: var(--chatbot-text) !important;
}

/* Animations */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(108, 99, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  padding: 10px 15px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--chatbot-accent);
  border-radius: 50%;
  margin: 0 2px;
  animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingAnimation {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 8px;
}
body {
    background-image: url('new-slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: makes the image fixed while scrolling */
    min-height: 100vh;
  }

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--mainp) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--light) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
    left: 0%;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
    left: 0%;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #6112bc;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--light) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--success);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
        left: 0%;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--success);
    }
}


/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-round.png),
        url(../img/bg-line.png);
    background-position:
        0px 40%,
        right 0 top 0,
        left 50% top 0,
        left 50% top 50%,
        center bottom -1px;
    background-repeat: no-repeat;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 11px;
    bottom: 0;
    left: 0;
    border-top: 1px solid #5A5A5A;
    border-bottom: 1px solid #5A5A5A;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    bottom: 5px;
    left: 0;
    background: var(--success);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -30px;
}

.section-title.text-center::after {
    width: 120px;
    left: 50%;
    margin-left: -60px;
}


/*** Domain Search ***/
.domain {
    background: url(../img/bg-domain.png) center center no-repeat;
    background-size: contain;
}


/*** Comparison ***/
@media (min-width: 992px) {
    .comparison::after {
        position: absolute;
        content: "";
        width: 1px;
        top: 56px;
        bottom: 20px;
        left: 50%;
        background: #DDDDDD;
    }
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--success) !important;
    border-color: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item .position-absolute {
    background: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--success);
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}
/*** my changes***/
.hover-effect {
    transition: all 0.3s ease;
  }
  .hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  .carousel-item {
    transition: transform 0.8s ease-in-out;
  }

  /* Add to your CSS */
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}

.carousel-item-next,
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev,
.active.carousel-item-left {
  transform: translateX(-100%);
}

/*** Footer ***/
.footer {
    background:
        url(../img/bg-round.png),
        url(../img/bg-line.png);
    background-position:
        0px 112px,
        right 0 bottom 0,
        left 50% top 80px,
        left 50% bottom 0,
        top center;
    background-repeat: no-repeat;
}

.footer p {
    font-size: 15px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--secondary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .3);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.hosting-hero {
                position: relative;
                overflow: hidden;
                color: white;
                padding: 4rem 0;
                background-color: transparent;
              }

              /* Background Elements */
              .hero-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
              }

              .bg-particles {
                position: absolute;
                width: 100%;
                height: 100%;
              }

              .particle {
                position: absolute;
                border-radius: 50%;
                background: rgba(255,255,255,0.05);
                animation: float 15s infinite linear;
              }

              .particle:nth-child(1) {
                width: 300px;
                height: 300px;
                top: -50px;
                left: -50px;
                animation-delay: 0s;
              }

              .particle:nth-child(2) {
                width: 200px;
                height: 200px;
                bottom: -30px;
                right: 20%;
                animation-delay: 5s;
              }

              .particle:nth-child(3) {
                width: 150px;
                height: 150px;
                top: 30%;
                right: -30px;
                animation-delay: 8s;
              }

              .bg-gradient {
                position: absolute;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.0) 0%, rgba(30, 41, 59, 0.0) 0%);
              }

              /* Slider Container */
              .slider-container {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;
              }

              .slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 0.8s ease;
              }

              .slide.active {
                opacity: 1;
                position: relative;
              }

              .slide-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                opacity: 0.3;
                z-index: 0;
              }

              /* Content Layout */
              .hero-container {
                position: relative;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
                display: flex;
                align-items: center;
                min-height: 500px;
                z-index: 1;
              }

              .hero-content {
                max-width: 600px;
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
              }

              /* Typography */
              h1 {
                font-size: 3.5rem;
                font-weight: 800;
                line-height: 1.2;
                margin: 0;
              }

              .highlight {
                color: var(--third);
                position: relative;
                display: inline-block;
              }

              .highlight::after {
                content: '';
                position: absolute;
                bottom: 5px;
                left: 0;
                width: 100%;
                height: 10px;
                background: rgba(245, 158, 11, 0.2);
                z-index: -1;
                border-radius: 2px;
              }

              .subhead {
                font-size: 1.25rem;
                color: rgba(255,255,255,0.8);
                margin: 0;
                max-width: 90%;
              }

              /* Badges */
              .badge {
                align-self: flex-start;
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(5px);
                padding: 0.5rem 1rem;
                border-radius: 50px;
                font-size: 0.9rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 0.5rem;
              }

              /* Price Card */
              .price-card {
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                padding: 1.5rem;
                width: fit-content;
                border: 1px solid rgba(255,255,255,0.1);
                margin: 1rem 0;
                position: relative;
              }

              .price-badge {
                position: absolute;
                top: -10px;
                right: 20px;
                background: var(--third);
                color: var(--dark);
                padding: 0.25rem 0.75rem;
                border-radius: 50px;
                font-size: 0.75rem;
                font-weight: 700;
              }

              .price {
                display: flex;
                align-items: flex-end;
                gap: 0.5rem;
              }

              .amount {
                font-size: 3rem;
                font-weight: 800;
                line-height: 1;
              }

              .period {
                font-size: 1rem;
                color: rgba(255,255,255,0.7);
                padding-bottom: 0.5rem;
              }

              .price-note {
                font-size: 0.9rem;
                color: rgba(255,255,255,0.6);
                text-decoration: line-through;
              }

              /* CTA Buttons */
              .cta-group {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
              }

              .cta-primary {
                background: var(--primary);
                color: white;
                border: none;
                padding: 0.75rem 1.5rem;
                border-radius: 8px;
                font-size: 1rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                cursor: pointer;
                transition: all 0.2s ease;
                position: relative;
                overflow: hidden;
              }

              .cta-primary:hover {
                background: var(--secondary);
                transform: translateY(-2px);
              }

              .cta-primary svg {
                transition: transform 0.2s ease;
              }

              .cta-primary:hover svg {
                transform: translateX(3px);
              }

              /* Pulse Animation */
              .pulse {
                animation: pulse 2s infinite;
              }

              @keyframes pulse {
                0% {
                  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
                }
                70% {
                  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
                }
                100% {
                  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
                }
              }

              /* Slider Controls */
              .slider-controls {
                position: absolute;
                bottom: 2rem;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                align-items: center;
                gap: 2rem;
                z-index: 10;
              }

              .slider-prev, .slider-next {
                background: rgba(255,255,255,0.1);
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.2s ease;
                color: white;
              }

              .slider-prev:hover, .slider-next:hover {
                background: rgba(255,255,255,0.2);
              }

              .slider-dots {
                display: flex;
                gap: 0.5rem;
              }

              .slider-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(255,255,255,0.3);
                cursor: pointer;
                transition: all 0.2s ease;
              }

              .slider-dot.active {
                background: white;
                transform: scale(1.2);
              }

              /* Trust Indicators */
              .trust-indicators {
                position: relative;
                max-width: 1200px;
                margin: 2rem auto 0;
                padding: 0 2rem;
                display: flex;
                gap: 1.5rem;
                justify-content: center;
                flex-wrap: wrap;
                z-index: 1;
              }

              .trust-item {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                font-size: 0.9rem;
                color: rgba(255,255,255,0.8);
                background: rgba(255,255,255,0.05);
                backdrop-filter: blur(5px);
                padding: 0.75rem 1.25rem;
                border-radius: 50px;
              }

              .trust-item svg {
                color: var(--success);
              }

              /* Animations */
              @keyframes float {
                0% { transform: translate(0, 0) rotate(0deg); }
                50% { transform: translate(20px, 20px) rotate(5deg); }
                100% { transform: translate(0, 0) rotate(0deg); }
              }

              /* Responsive Design */
              @media (max-width: 768px) {
                .hero-container {
                  text-align: center;
                  padding-bottom: 4rem;
                  justify-content: center;
                }
                
                h1 {
                  font-size: 2.5rem;
                }
                
                .subhead {
                  max-width: 100%;
                }
                
                .price-card, .cta-group, .trust-indicators {
                  margin-left: auto;
                  margin-right: auto;
                }
                
                .badge {
                  align-self: center;
                }
                
                .highlight::after {
                  bottom: 2px;
                  height: 8px;
                }
                
                .slider-controls {
                  bottom: 1rem;
                }
                
                .trust-item {
                  padding: 0.5rem 1rem;
                  font-size: 0.8rem;
                }
              }
