/* Import Google Font in CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* Root Variables */
:root {
  --font-family: 'Montserrat', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  --text-color: #333333;
  --bg-color: #ffffff;

  /* Colors */
  --primary-blue: #0056b3;
  --hover-blue: #003d7a;
  --primary-yellow: #ffd700;
  --hover-yellow: #cca500;
  --btn-text-color: #ffffff;

  /* Shadows */
  --box-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --padding-small: 0.5rem;
  --padding-large: 1rem;
  --border-radius: 5px;
}

/* General Typography */
body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
}

/* Navbar Styles */
.navbar {
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow-light);
  padding: var(--padding-small) var(--padding-large);
  transition: background-color 0.3s ease-in-out;
}

.navbar .nav-link {
  color: var(--text-color);
  font-weight: 500;
  font-size: var(--font-size-base);
  margin: 0 10px;
  transition: color 0.3s ease-in-out;
}

.navbar .nav-link:hover {
  color: var(--primary-blue);
}

.navbar .btn-login {
  background-color: var(--primary-blue);
  color: var(--btn-text-color);
  padding: var(--padding-small) var(--padding-large);
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease-in-out;
}

.navbar .btn-login:hover {
  background-color: var(--hover-blue);
}

.navbar .btn-call {
  background-color: var(--primary-yellow);
  color: #000000;
  padding: var(--padding-small) var(--padding-large);
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease-in-out;
}

.navbar .btn-call:hover {
  background-color: var(--hover-yellow);
}

/* Button Font */
.btn {
  font-family: var(--font-family);
}
#carouselExampleIndicators{
  background: url('../images/banner/herobanner__1.jpg') center/cover no-repeat;
  height: 80vh; /* Full height on large screens */
  background-position: center center;
}
/* Carousel Item */
.carousel-item {
  position: relative;
  height: 80vh;
}
.banner-img{
  object-fit: cover;
  width: 33%;
  height: 60vh;
  right: 10%;
  position: absolute;
  background-size: cover;
  top: 50%;
  transform: translateY(-20%);
}

.navbar .nav-link.active {
  color: var(--primary-blue); /* Highlight active link */
  font-weight: bold; /* Emphasize active link */
}
/* Responsive Carousel Item */
@media (max-width: 768px) {
  .nav-item.dropdown .dropdown-menu {
    min-width: 100%; /* Full width for smaller screens */
    position: static; /* Remove absolute positioning */
    transform: none; /* Disable animations */
    opacity: 1;
    visibility: visible;
    display: block; /* Always visible */
    box-shadow: none; /* Remove shadow */
  }

  .nav-item.dropdown .dropdown-item {
    font-size: 14px; /* Adjust text size */
  }
  .carousel-item {
    height: 60vh; /* Reduce height on smaller screens */
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 50vh; /* Further reduce height on very small screens */
    background-size: cover;
  }
}

/* Carousel Caption Positioning */
.carousel-caption {
    position: absolute;
    top: 50%;  /* Vertically center the caption */
    left: 15%;  /* Align the caption slightly off-center to the left */
    width: 40%; /* Set the width to 50% (col-6 equivalent) */
    transform: translateY(-50%);  /* Adjust vertical positioning */
    text-align: left;  /* Align text to the left */
    color: #ffffff;
    z-index: 2;
    padding-left: 20px;  /* Add some left padding for better visual spacing */
  }
  
  .carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .carousel-caption p {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  /* Responsive Design for Smaller Screens */
  @media (max-width: 768px) {
    .carousel-caption {
      width: 80%;
      left: 10%;  /* Adjust left positioning for medium screens */
      padding-left: 15px;  /* Adjust padding on medium screens */
    }
    
    .carousel-caption h1 {
      font-size: 2rem;  /* Reduce title font size for smaller screens */
    }
    
    .carousel-caption p {
      font-size: 1rem;  /* Adjust subtitle font size */
    }
  }
  
  @media (max-width: 480px) {
    .carousel-caption {
      width: 80%;
      left: 5%;  /* Further adjust for very small screens */
      padding-left: 10px;  /* Further adjust padding on very small screens */
    }
  
    .carousel-caption h1 {
      font-size: 1.5rem;  /* Smaller title font size for very small screens */
    }
  
    .carousel-caption p {
      font-size: 0.9rem;  /* Smaller subtitle font size */
    }
  }
  
 /* Enable hover dropdown */
 .nav-item.dropdown {
  position: relative;
}
/* Enable hover dropdown */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
}

/* Initially hide the dropdown menu */
.nav-item.dropdown .dropdown-menu {
  display: none; /* Initially hidden */
  position: absolute;
  top: 100%; /* Position just below the navbar */
  left: 0;
  background-color: var(--bg-color); /* Match theme background */
  border: none; /* Remove border */
  border-radius: var(--border-radius); /* Rounded corners */
  box-shadow: var(--box-shadow-light); /* Subtle shadow for depth */
  padding: var(--padding-small) 0; /* Space around items */
  min-width: 12rem; /* Set dropdown width */
  z-index: 1000; /* Ensure it appears on top */
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px); /* Subtle upward animation */
}

/* Show Dropdown on Hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Slide down effect */
}

.nav-item.dropdown .dropdown-item {
  color: var(--text-color); /* Match theme text color */
  font-size: var(--font-size-base);
  padding: var(--padding-small) var(--padding-large); /* Add spacing */
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  border-radius: var(--border-radius); /* Slightly rounded */
}

.nav-item.dropdown .dropdown-item:hover {
  background-color: var(--primary-blue); /* Theme primary color */
  color: var(--btn-text-color); /* Contrast text color */
}
/* Active State for Dropdown Items */
.nav-item.dropdown .dropdown-item.active {
  background-color: var(--hover-blue); /* Slightly darker primary */
  color: var(--btn-text-color); /* Contrast text color */
}
/* Divider in Dropdown Menu */
.nav-item.dropdown .dropdown-divider {
  height: 1px;
  margin: var(--padding-small) 0;
  background-color: #e5e5e5; /* Light gray for separation */
}
/* Navbar Text and Button Adjustment for Smaller Screens */
@media (max-width: 992px) {
  .navbar .nav-link {
    font-size: 14px;
  }
  .navbar .btn-login,
  .navbar .btn-call {
    font-size: 14px;
  }
}

/* Section Styling */
.zoho-suite-section {
  background-color: #f7f9fc; /* Light background for contrast */
  color: #172b4d; /* Dark blue text */
}

.suite-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff0000; /* Red from your logo theme */
}

.suite-subheading {
  font-size: 2rem;
  font-weight: 600;
  color: #8000ff; /* Purple from your logo theme */
}

.suite-description {
  font-size: 1.2rem;
  color: #555555; /* Muted dark gray for the description */
}

.btn-primary {
  background-color: #ff0000; /* Red for primary button */
  border-color: #ff0000;
}
.btn-color{
  background-color: #ffffff;
}
.btn-color:hover{
  background-color: #0056b3;
}
.btn-primary:hover {
  background-color: #cc0000;
  border-color: #cc0000;
}

.btn-outline-dark {
  color: #172b4d;
  border-color: #172b4d;
}

.btn-outline-dark:hover {
  background-color: #172b4d;
  color: #ffffff;
}

.suite-image {
  max-width: 100%;
  border-radius: 0.5rem;
}
/* Parallax Section */
.a8-benefits-section .parallax-bg {
  background: url('../images/sectons_images/REP4U5Ba.webp') center center / cover no-repeat fixed;
  position: relative;
}

.a8-benefits-section .parallax-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text visibility */
  z-index: 1;
}

.a8-benefits-section .container {
  position: relative;
  z-index: 2;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
}

.section-description {
  font-size: 1.2rem;
  color: #dcdcdc;
  line-height: 1.8;
}

.btn-primary {
  background-color: #ff0000; /* Red theme */
  border-color: #ff0000;
}

.btn-primary:hover {
  background-color: #cc0000;
  border-color: #cc0000;
}
/* Parallax Section */
.ai-impact-section .parallax-bg {
  background: url('../images/sectons_images/1.jpg') center center / cover no-repeat fixed;
  position: relative;
}

.ai-impact-section .parallax-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  z-index: 1;
}

.ai-impact-section .container {
  position: relative;
  z-index: 2;
}
/* Parallax Section */
.ai-impact-smb-section .parallax-bg {
  background: url('../images/sectons_images/blog__bg_2.png') center center / cover no-repeat fixed;
  position: relative;
}

.ai-impact-smb-section .parallax-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  z-index: 1;
}

.ai-impact-smb-section .container {
  position: relative;
  z-index: 2;
}
/* Footer Styles */
.footer {
  background-color: #f8f8f8; /* Dark blue to black gradient */
  color: #202020; /* White text for contrast */
  padding: 3rem 0;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff0000; /* Red for headings to match the logo */
  margin-bottom: 1rem;
}

.footer-link {
  color: #202020; /* White links for default state */
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff0000; /* Cyan hover effect matching the infinity gradient */
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .footer-heading {
    font-size: 1rem;
  }
  .footer-link {
    font-size: 0.85rem;
  }
}

/* Gradient Effect for Logos/Icons */
.footer-heading:after {
  content: '';
  display: block;
  width: 5.26rem;
  height: 2px;
  background: linear-gradient(90deg, #8000ff, #00ffff); /* Purple to Cyan Gradient */
  margin-top: 5px;
}

.footer-copyright {
  background-color: #111; /* Darker background for separation */
  color: #ffffff; /* White text */
  font-size: 0.9rem;
  border-top: 1px solid #444; /* Subtle border for separation */
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright .text-red {
  color: #ffffff; /* Red for the "Advisor" brand */
}

.footer-copyright .footer-link {
  color: #00ffff; /* Cyan for the links */
  text-decoration: none;
}

.footer-copyright .footer-link:hover {
  color: #8000ff; /* Purple hover effect matching the infinity gradient */
}

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5; /* Light background color */
  padding: 50px;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  background-color: white; /* White background for the content */
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for styling */
  border-radius: 10px; /* Rounded corners */
}

.cta-text {
  width: 60%;
  text-align: left;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-btn {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}

.btn-get-app {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0099ff; /* CTA button background color */
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px; /* Rounded corners for the button */
  transition: background-color 0.3s ease;
}

.btn-get-app:hover {
  background-color: #007acc; /* Darker blue when hovering */
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Section Background and Padding */
.pricing-section {
  background-color: #f9f9f9;
  padding: 70px 0;  /* Increased padding for more height */
}

/* Container with Centered Content */
.pricing-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Section Title Styling */
.pricing-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

/* Flexbox for Card Layout */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
  gap: 30px;  /* Space between columns */
}

.pricing-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05); /* Hover effect for cards */
}

.pricing-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-details {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.pricing-trial {
  font-style: italic;
  color: #888;
  margin-bottom: 15px;
}

.pricing-yearly, .pricing-monthly {
  font-weight: bold;
  font-size: 1.3rem;
}

.pricing-yearly {
  color: #0099ff;  /* Blue color for yearly price */
}

.pricing-monthly {
  color: #333;  /* Dark color for monthly price */
}

.discount {
  color: #ff5733;  /* Accent color for discount */
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);  /* 2 columns on tablets */
  }
  
  .pricing-title {
    font-size: 2.2rem; /* Slightly reduce font size */
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;  /* 1 column on smaller screens */
    gap: 20px;  /* Reduced gap for small screens */
  }
  
  .pricing-title {
    font-size: 2rem; /* Reduce font size for mobile */
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 50px 0; /* Adjust padding for very small screens */
  }

  .pricing-title {
    font-size: 1.8rem; /* Smaller title font size */
    margin-bottom: 25px;
  }

  .pricing-card {
    padding: 20px;  /* Reduce padding for small screens */
  }

  .pricing-name {
    font-size: 1.5rem; /* Adjust heading size */
  }

  .pricing-monthly, .pricing-yearly {
    font-size: 1.1rem; /* Adjust price size for small screens */
  }
}
/* Logos Section */
.cta-logos {
  display: flex;
  justify-content: center;  /* Center logos horizontally */
  align-items: center;      /* Center logos vertically */
  gap: 70px;                /* Space between the logos */
  margin: 80px 0;         /* Add space above the logos */
}

/* Individual Logo Style */
.cta-logo {
  max-height: 100px;        /* Adjust the size of the logos */
  object-fit: contain;      /* Ensure logos maintain their aspect ratio */
  transition: transform 0.3s ease;
}

/* Hover Effect for Logos (Optional) */
.cta-logo:hover {
  transform: scale(1.1);    /* Slight zoom effect when hovered */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-logos {
    gap: 20px;  /* Reduce space between logos on smaller screens */
  }

  .cta-logo {
    max-height: 80px;  /* Reduce logo size on smaller screens */
  }
}

@media (max-width: 480px) {
  .cta-logos {
    flex-direction: column;  /* Stack logos vertically on very small screens */
    gap: 30px;               /* Reduce the gap between the logos */
  }

  .cta-logo {
    max-height: 60px;  /* Further reduce logo size on very small screens */
  }
}

 /* Parallax Section */

 /* Title Section */
 .title-section {
  background: linear-gradient(135deg, #FF0000, #0073E6);
  color: white;
  text-align: left;
  padding: 2rem 1rem;
  margin-top: 66px;
  height: 220px;
}
.title-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.title-section p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 3rem 1rem;
}
.contact-section .content-left {
  padding-right: 1.5rem;
}
.contact-section .contact-form {
  padding-left: 1.5rem;
}

/* Form */
.form-control,
.btn-primary {
  border-radius: 0.5rem;
}

/* Hover effect on card */
/* Hover effect with gradient */
.hover-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
  border-radius: 8px;
  background: #fff;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #6a11cb, #2575fc); /* Theme color gradient */
  
}

.card-body {
  padding: 1.25rem;
}

.card-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.card-text {
  color: #202020; /* Text color on hover */
}
.ultext {
  color: #202020; /* Text color on hover */
}

/* Make the text hidden by default */
.card-text {
    transition: opacity 0.3s ease-in-out;
}

/* Reveal text on hover */
.hover-card:hover .card-text, .hover-card:hover .card-title{
  opacity: 1;
  color: #fff;
}
.hover-card:hover .ultext:hover{
  opacity: 1;
  color: #fff;
}

/* Responsive card layout */
@media (max-width: 767px) {
  .card-body {
    padding: 1rem;
  }
}
.email-marketing .card {
  display: flex;
  flex-direction: column;
}

.email-marketing .card-body {
  flex-grow: 1;
}
.workflow-app .card {
  display: flex;
  flex-direction: column;
}

.workflow-app .card-body {
  flex-grow: 1;
}
.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Aspect ratio: 16:9 */
  overflow: hidden;
}

.responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.header-row,
.row,
.competitor--logo-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.cell {
  flex: 1;
  min-width: 120px;
  padding: 15px;
  border-right: 1px solid #ddd;
  text-align: center;
}

.cell:last-child {
  border-right: none;
}

.header-row {
  background-color: #f8f9fa;
  font-weight: bold;
}

.row:nth-child(even) {
  background-color: #f2f2f2;
}

.cell i {
  font-size: 16px;
}

.cell .fa-check {
  color: #28a745;
}

.cell .fa-times {
  color: #d9534f;
}

.competitor--logo-row {
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.competitor--logo-row .cell {
  flex: 1;
  min-width: 120px;
}

.competitor--logo-row .competitor-logo {
  max-width: 80px;
  height: auto;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .cell {
    min-width: 100px;
    padding: 10px;
  }

  .competitor--logo-row .competitor-logo {
    max-width: 60px;
  }
}

@media screen and (max-width: 576px) {
  .cell {
    min-width: 80px;
    padding: 8px;
  }

  .competitor--logo-row .competitor-logo {
    max-width: 50px;
  }
}
