:root {
  --primary-blue: #002a76;
  --secondary-blue: #006cbd;
  --accent-blue: #0078d4;
  --primary: #2c6fbb;
  --primary-light: #5d9cec;
  --secondary: #3bb77e;
  --danger: #e74c3c;
  --dark: #2c3e50;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gradient-primary: linear-gradient(135deg, #002a76 0%, #006cbd 100%);
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary) 0%,
    #4cd964 100%
  );
  --gradient-danger: linear-gradient(135deg, var(--danger) 0%, #e67e22 100%);
  --gradient-accent: linear-gradient(135deg, #0078d4 0%, #40e0d0 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 20px rgba(0, 120, 212, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
}
/* Hero Section */
.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/i-Freeze/landing.jpg");

  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>')
    no-repeat center/cover;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.btn-custom,
.btn-custom-2 {
  background: linear-gradient(45deg, #f093fb, #f5576c);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover,
.btn-custom-2:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: white;
}

.btn-custom-2 {
  background: linear-gradient(45deg, #0073f7f6, #1c029d);
} 

.section-padding {
  padding: 5rem 0;
}

.bg-light-custom {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section-i {
  font-size: 15rem;
  /* opacity: 0.8; */
}

/* feature section */

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
/* m */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  position: relative;
  text-align: center;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-header {
  padding: 25px 20px;
  text-align: center;
  color: white;
}

.product-header.primary {
  background: var(--gradient-primary);
}

.product-header.success {
  background: var(--gradient-secondary);
}

.product-header.danger {
  background: var(--gradient-danger);
}

.product-header i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.product-content {
  padding: 25px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  transition: var(--transition);
}

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

.feature-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.feature-list li span {
  margin-left: 10px !important;
}

/* i-Freeze Remote Desktop Section */
.remote-desktop-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
}
.remote-desktop-section h2{
   color: #0066cc;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}
.remote-desktop-content .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

.remote-desktop-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.remote-desktop-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.remote-desktop-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .remote-desktop-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .remote-desktop-content .lead {
    text-align: center;
  }
}

/* i-Freeze Kiosk Mode Section */
.kiosk-mode-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.kiosk-mode-content h2 {
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.kiosk-mode-content .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

.kiosk-mode-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kiosk-mode-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.kiosk-mode-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .kiosk-mode-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .kiosk-mode-content .lead {
    text-align: center;
  }
}
/* i-Freeze Centralized Management Section */
.centralized-management-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
}

.centralized-management-content h2 {
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.centralized-management-content .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

.centralized-management-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.centralized-management-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.centralized-management-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Privacy blur overlay - position this over sensitive areas if needed */
.privacy-blur {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: none; /* Set to 'block' and position if you need to blur specific areas */
}

@media (max-width: 991px) {
  .centralized-management-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .centralized-management-content .lead {
    text-align: center;
  }
}
/* Trusted Section */
.trusted-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 50px 0;
}

.trusted-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trusted-logos img {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.trusted-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.logo-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.logo-icon-wrapper .fa-linux {
  font-size: 60px;
  color: #000000;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.logo-icon-wrapper:hover .fa-linux {
  filter: grayscale(0);
  opacity: 1;
  color: #fcc624;
}

/* Version Section */
.version-section {
  background: var(--gradient-primary);
  color: white;
}

.version-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bullet-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  position: relative;
}

.bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  margin: 0 8px;
  position: relative;
  z-index: 2;
}

.bullet:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.btn-shadow {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.btn-shadow:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}
/* Pricing Section */
.pricing-section {
  background: #f8f9fa;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-header {
  padding: 17px;
  text-align: center;
  background: var(--light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pricing-header div {
  display: flex;
  justify-content: center;
  margin: 0.6rem 0;}

  .pricing-header div img{
    width: auto; 
    height: 120px; 
    object-fit: cover; 
    border-radius: 4%; 
    padding: 1px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-features {
  padding: 25px;
}

.pricing-features ul {
  list-style: none;
  padding-left: 0;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing-features li:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-features li.check:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233bb77e'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.pricing-features li.uncheck:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

.pricing-footer {
  padding: 25px;
  text-align: center;
}

.btn-plan {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
}

.btn-plan:hover {
  background: var(--dark);
  color: white;
}

/* Enterprise Section */
.enterprise-section {
  background: white;
}

.enterprise-card {
  background: var(--gradient-primary);
  border-radius: 12px;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.enterprise-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.enterprise-card p {
  margin-bottom: 30px;
  max-width: 600px;
}
/* about-Flothers section */
/* 
.about-Flothers {
  padding-top: var(--mainPadding);
  padding-bottom: 0;
} */
/* @media (max-width: 991px) {
  .about-Flothers .content {
    flex-wrap: wrap;
  }
  .about-Flothers .content .logo {
    max-width: 100%;
  }

}
.about-Flothers .info {
  box-shadow: -2px -2px 5px #adadad, 0px 2px 5px #adadad;
}
.about-Flothers .info p span {
  animation: flash-text ease-in 1.5s infinite;
  -webkit-animation: flash-text ease-in 1.5s infinite;
}
@keyframes flash-text {
  0%,
  40%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.about-Flothers .logo {
  max-width: 555px;
  background-color: var(--mainBG);
}
.about-Flothers .logo img {
  max-width: 80%;
} */

/* About Sections */
.about-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../img/i-Freeze/about.jpg");
  background-position: top, center;
  background-attachment: fixed;
  background-size: cover;
  color: white;
  padding: 100px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-content p{
  font-size: 17px;
}
/* Feedback Section */
.feedback-section {
  background: #f8f9fa;
}

.feedback-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.feedback-card:hover {
  transform: translateY(-10px);
}

.feedback-card img {
  max-height: 100px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .navbar-container {
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-section .container {
    margin-top: 120px;
  }

  .hero-i {
    margin-top: 20px;
  }

  .hero-section-i {
    font-size: 12rem;
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-btns .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
  .section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }
  .carousel-item {
    height: auto;
    padding: 80px 0;
  }

  .enterprise-card {
    padding: 30px;
  }

  .company-card {
    flex-direction: column;
  }
  .footer-container .row > div {
    margin-bottom: 40px;
  }
}
