
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Webinar Banner */
.webinar-banner {
  background: #31006f;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f2a36;
  padding: 1rem 2rem;
  color: white;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.nav a {
  color: white;
  font-size: 0.95rem;
}

.login {
  color: #ff6600;
  font-weight: bold;
}

.btn-outline {
  border: 1px solid #ff6600;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  color: #ff6600;
}

.btn-filled {
  background: #ff6600;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-left: 1rem;
}



/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #f8f8f8, #ffffff);
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.hero-img {
  flex: 1;
  text-align: center;
  
  

}

.hero-img img {
  max-width: 100%;
  height: auto;
  max-width: 34rem;
  
  
}

/* Badges Section */
.badges {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem;
  background: #fff;
}

.badges img {
  max-width: 120px;
  margin: 1rem;
}




/* cPanel Info Section */
.cpanel-info {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
}

.cpanel-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cpanel-info p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #333;
  line-height: 1.6;
}

.cpanel-info .btn-filled {
  display: inline-block;
  margin-bottom: 3rem;
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 1rem;
  text-align: center;
}

.feature img {
  height: 60px;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* 3*/
/* Builder Section */
.builder-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.builder-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.builder-image {
  flex: 1 1 500px;
  text-align: center;
  max-width: 405px;
  
}

.builder-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.builder-text {
  flex: 1 1 400px;
}

.builder-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.builder-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.builder-link {
  color: #f26522;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

.builder-link:hover {
  text-decoration: underline;
}



/*.container . {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #253447;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;*/
}

h1 {
  font-size: 2em;
  margin-bottom: 40px;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  width: 100%;
}

.card {
  background-color: transparent;
  border: 1px solid #3e5265;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  
}

.card:hover {
  transform: translateY(-5px);
  border-color: #00bfa6;
}

.card img {
  height: 60px;
  margin-bottom: 20px;
}

.card p {
  font-size: 1.1em;
  line-height: 1.4;
  color: #e0e0e0;
}
/* 4*/

/* Section Styling */
.cpanel-targets {
  background-color: #1f3446;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

/* Heading */
.cpanel-targets h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* Grid Layout */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Cards */
.target-box {
  background-color: transparent;
  border: 1px solid #3e5b6c;
  border-radius: 8px;
  padding: 2rem 1rem;
  transition: background 0.3s, transform 0.3s;
}

.target-box:hover {
  background-color: #2c4a5f;
  transform: translateY(-5px);
}

/* Icons */
.target-box img {
  height: 50px;
  margin-bottom: 1rem;
}

/* Titles */
.target-box h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #e0f7fa;
}


/*qaybtii 5*/
.cpanel-partner {
  background-color: #fff;
  color: #222;
  text-align: center;
  padding: 4rem 2rem;
}

/* Heading */
.cpanel-partner h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #1c1c1c;
}

/* Grid Layout */
.partner-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

/* Individual Boxes */
.partner-box {
  max-width: 200px;
}

.partner-box img {
  height: 70px;
  margin-bottom: 1rem;
}

.partner-box h3 {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
}

/* Button */
.partner-btn {
  display: inline-block;
  background-color: #fc6421;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.partner-btn:hover {
  background-color: #e0551c;
}


/*news section*/
.cpanel-news {
  font-family: sans-serif;
}

/* Top Banner */
.news-banner {
  background: linear-gradient(to right, #62c370, #1ca7ec);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.news-banner h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.subscribe-btn {
  padding: 0.7rem 2rem;
  font-size: 1rem;
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Lower Info Boxes */
.news-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 2rem;
  background: #f8f9fa;
  flex-wrap: wrap;
}

.news-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 450px;
}

.news-box img {
  height: 70px;
}

.news-box h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #222;
}

.news-box p {
  margin: 0.5rem 0;
  color: #555;
}

.orange-link {
  color: #fc6421;
  font-weight: 600;
  text-decoration: none;
}

.orange-link span {
  font-size: 1.1rem;
  margin-left: 5px;
}
/*7*/
.cpanel-footer {
  background-color: #1f2e3c;
  color: #ffffff;
  padding: 60px 30px 30px;
  font-family: sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-bottom .footer-left p {
  font-size: 12px;
  color: #aaa;
}

.footer-right {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.footer-right img {
  width: 22px;
  height: 22px;
  filter: brightness(0.8);
  transition: 0.3s;
}

.footer-right img:hover {
  filter: brightness(1.2);
}
/* reponsive */
@media (max-width: 768px) {
  .news-links {
    flex-direction: column;
    align-items: center;
  }

  
.partner-grid {
  flex-direction: column;
  align-items: center;
}

  .news-box {
    flex-direction: column;
    text-align: center;
  }
   .footer-top {
    flex-direction: column;
    align-items: center;
  }

}

