/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

/* -------------------- Top Bar -------------------- */
.top-bar {
  background: #1a1a1a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  font-size: 0.9rem;
}

.top-bar a {
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.top-bar a:hover {
  color: #ff4d6d;
}

.social-icons a {
  margin-right: 15px;
}

.top-links {
  display: flex;
  gap: 10px;
}

/* -------------------- Header -------------------- */
.cleansecure-header {
  background: #1e3a8a;
  color: #fff;
  position: relative;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 20px;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.logo .logo-highlight {
  color: #ff4d6d;
}

.search-bar {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.search-bar input {
  padding: 8px 12px;
  border-radius: 25px 0 0 25px;
  border: none;
  outline: none;
  width: 220px;
}

.search-bar button {
  padding: 8px 12px;
  border-radius: 0 25px 25px 0;
  border: none;
  background: #ff4d6d;
  color: #fff;
  cursor: pointer;
}

.call-now a {
  background: #ff4d6d;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.call-now a:hover {
  background: #e03f5a;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* -------------------- Navigation -------------------- */
nav {
  width: 100%;
  background: #162f6f;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 10px 0;
  margin: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ff4d6d;
}

/* Hero Banner Section - Contained Width */
.hero-banner {
  padding: 80px 15px;
  background: linear-gradient(135deg, #0a3d62, #1e3799);
  color: #fff;
}

.hero-banner .container {
  max-width: 1200px; /* Contained width */
  margin: 0 auto;
}

.hero-banner .hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-banner .hero-content {
  flex: 1 1 500px;
}

.hero-banner .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-banner .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hero-banner .hero-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ff4d6d;
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-banner .hero-btn:hover {
  background: #ee5253;
}

.hero-banner .hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-banner .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-banner .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-banner .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-banner .hero-content p {
    font-size: 1rem;
  }
  
  .hero-banner .hero-btn {
    padding: 12px 24px;
  }
}
/* Why CleanSecure Section */
.why-cleansecure {
  padding: 80px 15px;
  background: #f8f9fa;
  text-align: center;
}

.why-cleansecure .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.why-cleansecure .section-title .highlight {
  color: #ff4d6d;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card i {
  font-size: 2.5rem;
  color: #ff4d6d;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #top-c{
    padding-top: 15px;
  }
  .header-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 20px;
}
  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-cleansecure .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .feature-card {
    padding: 25px 15px;
  }
}
/* Limited Offer Section */
.limited-offer {
  background: linear-gradient(135deg, #1e3a8a, #ff4d6d);
  color: #fff;
  padding: 80px 15px;
  text-align: center;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 1200px;
}

.limited-offer .highlight {
  font-weight: 700;
  color: #ffd700;
}

.limited-offer h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.limited-offer p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.offer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn-offer {
  background: #ffd700;
  color: #1e3a8a;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.btn-offer:hover {
  background: #ffea85;
  transform: translateY(-3px);
}

.countdown {
  font-size: 1rem;
  color: #fff;
}

.countdown strong {
  color: #ffea85;
}

/* Responsive */
@media (max-width: 991px) {
  .limited-offer h2 {
    font-size: 1.9rem;
  }
  .limited-offer p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .offer-cta {
    flex-direction: column;
  }
  .btn-offer {
    width: 80%;
    text-align: center;
  }
}


.why-Data {
  padding: 80px 15px;
  max-width: 1100px;
  margin: 0 auto;
  color: #1a1a1a;
  background: #f9f9f9;
  border-radius: 12px;
}

.why-Data h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-align: center;
  color: #1e3a8a;
}

/* About Us Text Section */
.about-us-text {
  padding: 80px 15px;
  max-width: 1100px;
  margin: 0 auto;
  color: #1a1a1a;
  background: #f9f9f9;
  border-radius: 12px;
}

.about-us-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-align: center;
  color: #1e3a8a;
}

.about-us-text .highlight {
  color: #ff4d6d;
}

.about-us-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* Responsive */
@media (max-width: 991px) {
  .about-us-text h2 {
    font-size: 2.2rem;
  }
  .about-us-text p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-us-text {
    padding: 50px 15px;
  }
}
/* Our Services Section */
.our-services {
  padding: 80px 15px;
  background: #f5f5f5;
  color: #1a1a1a;
}

.our-services .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.our-services .highlight {
  color: #ff4d6d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card i {
  font-size: 40px;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .our-services .section-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .service-card i {
    font-size: 36px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }
}
/* Comparison Section */
.comparison-section {
  padding: 80px 15px;
  background: #f9f9f9;
  color: #1a1a1a;
}

.comparison-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.comparison-section .highlight {
  color: #ff4d6d;
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-row {
  display: contents;
}

.comparison-row div {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 1rem;
  background: #fff;
}

.comparison-row div:last-child {
  border-right: none;
}

.comparison-row.header div {
  background: #1e3a8a;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-row:nth-child(even) div {
  background: #f7f7f7;
}

.comparison-row i.yes {
  color: #28a745;
  font-size: 1.2rem;
}

.comparison-row i.no {
  color: #dc3545;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
  .comparison-row div {
    display: inline-block;
    min-width: 180px;
  }
}

@media (max-width: 576px) {
  .comparison-section .section-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }
  .comparison-row div {
    padding: 15px;
    font-size: 0.95rem;
  }
}
.cta-section {
  background: linear-gradient(135deg, #1e3a8a, #ff4d6d);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 1200px;
}

.cta-section .cta-overlay {
  position: relative;
  z-index: 2;
}

.cta-section .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section .highlight {
  color: #ffe600;
}

.cta-section .cta-info {
  font-size: 1.1rem;
  margin: 20px 0 30px;
  line-height: 1.7;
}

.cta-section .cta-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.cta-section .cta-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.cta-section .cta-call-btn {
  display: inline-block;
  background-color: #ff4d6d;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section .cta-call-btn:hover {
  background-color: #ff1a40;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-section {
    padding: 60px 15px;
  }
  .cta-section .cta-info {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-section .cta-info {
    font-size: 0.95rem;
  }
  .cta-section .cta-call-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}
.solutions-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.solutions-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1e3a8a;
}

.solutions-section .highlight {
  color: #ff4d6d;
}

.solutions-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.solution-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.solution-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.solution-item i {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.solution-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.solution-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .solution-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solution-row {
    grid-template-columns: 1fr;
  }
}


/* Disclaimer Section */
.disclaimer-section {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.disclaimer-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.disclaimer-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.disclaimer-section a {
  color: #ff4d6d;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links h5, .footer-contact h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ff4d6d;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ff4d6d;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
}

/* Fixed Call Now Button */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff4d6d;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background 0.3s ease, transform 0.2s ease;
}

.call-now-btn i {
  font-size: 1.2rem;
}

.call-now-btn:hover {
  background: #e03d5f;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .call-now-btn {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 576px) {
  .disclaimer-section {
    padding: 60px 15px;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }

  .call-now-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}


/* Contact Section */
.contact-section {
  background: #f5f5f5;
  padding: 80px 15px;
}

.contact-section .contact-title {
  text-align: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.contact-section .contact-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
  color: #555;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 0.95rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff4d6d;
}

.contact-form button {
  padding: 12px 20px;
  background: #ff4d6d;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e03f5a;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .contact-section .contact-title {
    font-size: 1.6rem;
  }

  .contact-section .contact-subtitle {
    font-size: 0.95rem;
  }
}
