* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
header {
    border-bottom: 1px solid #fff;
}

.navbar-brand h1 {
    font-size: 1.5rem;
    font-family: 'League Spartan', sans-serif;
    color: #001166;;
    margin-bottom: 0;
}

.navbar-brand p {
    color: #333;
    font-size: 0.85rem;
    font-family: 'League Spartan', sans-serif;
}

.nav-link {
    color: #001166;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif;  
    font-size: 1.0rem;
    
}
.nav-link-login
{
    color: #fff;
    background-color: #001166;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

}
.nav-link-signup
{
    color: #fff;
    background-color: #001166;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'League Spartan', sans-serif;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 10px;
    margin-top: -20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.nav-link-signup:hover
{
    border-bottom: 3px solid #001166;
    color: #001166;
    background-color: #fff;
}
.nav-link-login:hover
{
    border-bottom: 3px solid #001166;
    color: #001166;
    background-color: #fff;
}
.nav-link:hover {
    border-bottom: 2px solid #001166;
    color: #001166;
}

/* Logo Styles */
.logo {
    max-height: 30px; /* Adjust as per your needs */
    height: auto;
    width: auto;
   
}


/* Enable hover functionality for dropdown */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Dropdown menu customizations */
.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-item {
  font-family: 'League Spartan', sans-serif;  
  font-size: 16px;
  color: #001170;
  padding: 10px 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #001166;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 75vh; /* Full viewport height */
    background: url('/frontend/assets/static/Images/Digitalbg1.png'); /* Replace with your background image */
    color: #0615BF;
    background-repeat: no-repeat;
    background-size:cover;
    width: 100%;
}

  .overlay-text {
    position: absolute;
    top:35%;
    left:70%;
    transform: translate(-50%, -50%);
    color:#001166;
    font-size:65px;
    font-weight: bold;
    text-align: center;
    display: inline-flex;
    padding: 10px;
    border-radius: 5px;
    font-family: 'League Spartan', sans-serif;
  }
.overlay-text p
{
    position: absolute;
    top:100%;
    left:40%;
    transform: translate(-50%, -50%);
    color:#001166;
    font-size:15px;
    font-weight: bold;
    text-align: center;
    display: inline-flex;
    padding: 10px;
    border-radius: 5px;
    font-family: 'League Spartan', sans-serif;
}

.overlay-text a
{
  position: absolute;
    top:135%;
    left:40%;
    transform: translate(-50%, -50%);
    background-color: #001166;
    color:#fff;
    font-size:15px;
    font-weight: bold;
    text-align: center;
    display: inline-flex;
    padding: 10px;
    border-radius: 5px;
    font-family: 'League Spartan', sans-serif;
    text-decoration: none;
    padding: 10px;
    text-align: center;
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.popup-content h2 {
  margin-bottom: 20px;
  text-align: center;
}

.popup-content label, .popup-content input, .popup-content select {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.popup-content button {
  padding: 10px 20px;
  background-color: #001166;
  color: white;
  border: none;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 1.5em;
  color: #001166;
}

/* More Transparency for Header Image Text */
.header-text {
  color: #fff;
  text-align: center;
 font-family: 'League Spartan', sans-serif;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3); /* More transparent */
  border-radius: 10px;
}


/* Popup Styles */
.popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
}

.popup-content {
  background-color: #fff;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 90%; /* Change to 90% for smaller screens */
  max-width: 500px; /* Limit the max width */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Optional: Add a shadow for better visibility */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
}

input {
  margin-bottom: 15px; 
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em; /* Ensure text is readable */
}

button {
  padding: 10px;
  background-color: #001166;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em; /* Ensure button text is readable */
}

button:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

#services {
    padding: 0px 0;
}

#services h2 {
    color: #001166;
    font-size: 35px;
    margin-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 25px;
  color: #001166;
  margin-left: -180px;
  margin-top: 10px;
 
}


.email-marketing {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    background: #c1c6ff;
}

.email-marketing h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #001166;
  font-family: 'League Spartan', sans-serif;
}

.email-marketing p {
  font-size: 18px;
  line-height: 1.6;
  color: #001166;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
  font-family: 'League Spartan', sans-serif;
}

.email-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.email-card {
  background-color: #fff;
  color: #001166;
  border-radius: 12px;
  padding: 20px;
  width: 350px;
  gap: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.email-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #001166;
}

.email-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.email-card li {
  font-size: 18px;
  line-height: 1.8;
  display: flex;
  align-items: left;
  text-align: left;
  margin-bottom: 10px;
  font-family: 'League Spartan', sans-serif;
}

.email-card li::before {
  content: "✔";
  color: #e74c3c;
  font-size: 16px;
  margin-right: 10px;
}




.content-marketing {
  text-align: center;
  padding: 40px 50px;
  position: relative;
  background: #fdf7f8;
  
}

.content-marketing h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #001166;
  font-family: 'League Spartan', sans-serif;
}

.content-marketing p {
  font-size: 18px;
  line-height: 1.6;
  color: #001166;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
  font-family: 'League Spartan', sans-serif;
}

.content-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.content-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 350px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.content-container :hover
{
  transform: scale(1.05);
}

.content-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #001166;
}

.content-marketing::before,
.content-marketing::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: repeating-linear-gradient(45deg, #001166, #0056b3 5px, transparent 5px, transparent 10px);
  border-radius: 10px;
  opacity: 0.3;
}

.content-marketing::before {
  top: 100px;
  left: 20%;
  transform: rotate(45deg);
}

.content-marketing::after {
  bottom: 50px;
  right: 20%;
  transform: rotate(-45deg);
}





.con {
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #001166;
  margin-left: 50px;
  line-height: 1.0;
  text-align: left;
}

.con i {
  font-size: 24px;
}

.social-icons a {
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #001166;
  line-height: 3.5;
  transition: color 0.3s ease;
  display: list-item;
  list-style-type: none;
  padding: 5px;
  text-decoration: none;
}
.navmenu ul 
{
  list-style-type: square;
  margin-left: 50px;
  text-align: left;
  font-family: 'League Spartan', sans-serif;
  line-height: 1.7;
  transition: transform 0.2s ease-in-out;
  width:fit-content;
}
.navmenu li a
{

  text-decoration: none;
  font-size: 1.2rem;
  color: #001166;
  transition: transform 0.2s ease-in-out;
  text-align: left;
}
.navmenu li a:hover
{
  color: #0615BF;
  transform: scale(1.05);
}

.social-icons a:hover {
  color: #0615BF;
  transform: scale(1.05);
}
.fot
{
  width:98vw;
  margin-top: -40px;
  background: #f9f9f9;
  border-radius: 10px;

  
}


/* Responsive */
#back-to-top {
  position: fixed; /* Fixed position */
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  display: none; /* Hidden by default */
  background-color: #001166; /* Button background color */
  color: #fff; /* Text color */
  border: none; /* No border */
  padding: 10px 20px; /* Padding for the button */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
}

/* Hover effect for the button */
#back-to-top:hover {
  background-color: #001170; /* Change background on hover */
  transform: translateY(-5px); /* Slight lift effect on hover */
}
.benefits-section {
  padding: 40px;
  text-align: center;
  background-color: #f9f9f9;
}

.benefits-section h1 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

.benefits-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 20px;
  background-color: #f9f9f9;
}
.benefits-list ul {
  list-style: none;
  text-align: left;
}


.benefits-list li {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  margin-bottom: 10px;
  font-family: 'League Spartan', sans-serif;
  color: #001166;
  line-height:1.5;
  border-radius: 10px;
  padding: 10px;
  transform: translateX(-50px);
  animation: slideIn 0.6s ease-out forwards;
  
  
}
@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Adding a delay for each list item for staggered animation */
.benefits-list li:nth-child(1) { animation-delay: 0.2s; }
.benefits-list li:nth-child(2) { animation-delay: 0.4s; }
.benefits-list li:nth-child(3) { animation-delay: 0.6s; }
.benefits-list li:nth-child(4) { animation-delay: 0.8s; }

.benefits-list li:hover
{
  transform: scale(1.05);
  color: #001166;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.icon {
  color: #001166; /* Red check icon color */
  margin-right: 10px;
  font-size: 1.5em;
}

.marketing-types {
  text-align: center;
  padding: 50px;
  max-width: 2200px;
  margin: auto;
}

.marketing-types h2 {
  font-size: 2.3em;
  font-weight: 500;
  color: #001166;
  text-align: left;
  padding-bottom: 15px;
  font-family: 'League Spartan', sans-serif;
}

.marketing-types h1 {
  font-size: 2.5em;
  font-weight: 500;
  color: #001166;
  /* font-size: 35px; */
  margin-top: 0px;
  padding-bottom: 60px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  
}

.marketing-types p {
  font-size: 1.2em;
  line-height: 1.6;
  text-align: justify;
  color: #001166;
  width: 100%;
  font-family: 'League Spartan', sans-serif;
}

/* Types */
.type-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding-bottom: 40px;
  margin-left: -50px;
}
.types {
  width: 15%;
  height: 15%;
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
.types:hover
{
  transform: scale(1.05);
}
.types img {
  width: 75%;
  height:75%;
  padding: 5px;
}
.type-content {
  padding: 15px;
}
.type-title  {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-left: 8px;
  color: #001166;
}
.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
  animation: slideInn 0.6s ease-out forwards;
}
@keyframes slideInn {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Adding a delay for each list item for staggered animation */
.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 80px; /* Adjust icon size as needed */
  margin-bottom: 15px;
  margin-left: 80px;
}

.card h3 {
  font-size: 1.5em;
  font-weight: 600;
  color: #001166;
  margin: 15px 0 10px;
  font-family: 'League Spartan', sans-serif;
}

.card p {
  font-size: 1em;
  color: #001166;
  line-height: 1.6;
  font-family: 'League Spartan', sans-serif;
}


/* SMM social Media marketing */

.contain {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  background:#ffaec2;
 
  padding-bottom: 50px;
}
.smm h1 {
  font-size: 2.5em;
  font-weight: 500;
  color: #000;
  margin: 15px 0 10px;
  font-family: 'League Spartan', sans-serif;
}
.smm p {
  font-size: 1.2em;
  color: #000;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
  font-family: 'League Spartan', sans-serif;
}

.advantages {
  margin: 20px 0;
  background-color: #f9f9f9;
  padding: 10px;
  width:950px;
  margin-left: 330px;
  border-radius: 30px;
  padding-left: 30px;
  
}
.advantages h3
{
  font-size: 2.0em;
  font-weight: 500;
  color: #000;
  margin: 15px 0 10px;
  font-family: 'League Spartan', sans-serif;
}

.advantages ul {
  list-style: none;
  padding: 0;
}
.advantages ul li {
  font-size: 1.2em;
  margin-bottom: 3px;
  position: relative;
  text-align: left;
  padding-left: 25px;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
  font-family: 'League Spartan', sans-serif;
  color: #001166;
}
.advantages ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #001166;
}


.table-container {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 15px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1em;
  font-weight: bold;  
  color: #001166;
 
  font-family: 'League Spartan', sans-serif;
 
}

th, td {
  padding: 25px;
  text-align: center;
  font-size: 0.9em;
  
  background-color: #fff;
  font-family: 'League Spartan', sans-serif;
}
th {
  color: #001166;
  background-color:#0615BF ;
  color: #fff;
  
}
.red-header {
  background-color: #0615BF;
  font-weight: bold;
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  
}
.content-row {
  color: #001166;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  font-family: 'League Spartan', sans-serif;
  

} 




/* Responsive Design */
@media (max-width: 768px) {
  .navbar-brand h1 {
    font-size: 1.5rem;
}
.logo {
    max-height: 25px; /* Smaller logo for mobile */
}

.service-box {
    margin-bottom: 20px;
    margin-left: 18px;
}

/* Center social icons on small screens */
.social-icons {
    margin-left: 50px;
   
}
.navmenu a
{
    line-height: 1.5 ;
}


/* Adjust contact info alignment */
.con {
    margin-left: 30px;
}

/* Adjust Login and Sign-Up buttons on mobile */
.nav-link-login,
.nav-link-signup {
    width: 100%; /* Make buttons full width on mobile */
    margin-left: 0; /* Remove left margin */
    margin-top: 100px; /* Add top margin for spacing */
    box-shadow: none; /* Optional: Remove box-shadow on mobile */
}
.nav-link-signup {
  margin-top: 50px; /* Add top margin for spacing */

}

/* Ensure navbar-nav is flex column and center aligned */
.navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ensure nav-items take full width */
.navbar-nav .nav-item {
    width: 25%;
    text-align: center;
}

}






.flip-card {
    background-color: #fff;
    width: 150px;
    height: 150px;
    perspective: 1000px;
    margin-left: 100px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 10px;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    width: 300px;
    height: 350px;
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
  }
  
  
  .flip-card-front {
    background-color: #fff;
   
  }
  .flip-card-front h4
  {
    color: #001166;
    font-family: 'League Spartan', sans-serif ;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight:bold;
  }
  
  .flip-card-back {
    background-color: #fff;
    color: white;
    transform: rotateY(180deg);
  }
  .flip-card-back h1
  {
    color: #001166;
    font-family: 'League Spartan', sans-serif ;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight:bold;
    margin-top: 20px;
  }
  .flip-card-back p
  {
    color: #001166;
    font-family: 'League Spartan', sans-serif ;
    font-size: 16px;
    padding: 15px;
    font-weight:bold;
    text-align: justify;
  }
.flip-card-back a
{
    text-decoration: none;
    color: #fff;
    background-color: #001166;
    padding: 5px;
    border-radius: 5px;


}

/* Social Media */
.flip-cardsm {
    background-color: #fff;
    width: 150px;
    height: 150px;
    perspective: 1000px;
    margin-left: 350px;
    margin-top: -150px;
  }
  
  .flip-card-innersm {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 10px;
  }
  
  .flip-cardsm:hover .flip-card-innersm {
    transform: rotateY(180deg);
    width: 250 px;
    height: 250px;
  }
  
  .flip-card-frontsm, .flip-card-backsm {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
  }
  
  
  .flip-card-frontsm {
    background-color: #fff;
   
  }
  .flip-card-frontsm h4
  {
    color: #001166;
    font-family: 'League Spartan', sans-serif ;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight:bold;
  }
  
  .flip-card-backsm {
    background-color: #fff;
    color: white;
    transform: rotateY(180deg);
  }
  .flip-card-backsm h1
  {
    color: #001166;
    font-family: 'League Spartan', sans-serif ;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight:bold;
    margin-top: 20px;
  }
  .flip-card-backsm p
  {
    color: #001166;
    font-family: 'League Spartan', sans-serif ;
    font-size: 16px;
    padding: 15px;
    font-weight:bold;
    text-align: justify;
  }
.flip-card-backsm a
{
    text-decoration: none;
    color: #fff;
    background-color: #001166;
    padding: 5px;
    border-radius: 5px;
}

/*  */






