/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:"Nunito", sans-serif;
    background-color: rgb(255, 255, 253);
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #333;
}
p{
    color: #212529 !important;
}
.erp-left p, .erp-right p{
    color: white !important;

}


/* .header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 253);
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    transition: top 0.3s, transform 0.3s; 
} */

.header-nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: rgb(255, 255, 253) !important;
    padding: 0 0 0 100px !important;
    border-bottom: 0.5px solid #ddd !important;
    transition: top 0.3s, transform 0.3s !important; /* Smooth transition for both top and transform properties */
    
}
/* Hides the header when scrolling down */
.header-nav.hide {
    transform: translateY(-100%);  /* Moves the header off the screen */
}

/* Makes the header fixed after scrolling a certain distance */
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for visibility */
}

h1 {
    font-size: 3.1rem !important;
    font-weight: bold !important;
    color: #1f253d !important;
    
}

@media (min-width: 768px) {
    .header-nav {
        padding: 0 0 0 100px !important;
    }
    .header-nav .call{
        color: white !important;
    }
    .call{
        padding: 20px !important; 
        color: white !important;
        background-color: #007bff;
        font-size: 27px;        
    }
   
    .call h4{
        margin-bottom: 8px;
    }
}
@media (max-width: 768px) {
    .header-nav {
        padding: 2px 0 5px 15px !important;
    }
    .header-nav .call{
        color: white !important;
    }
    .header-nav .call{
        display: none;
    }
    .sidenav .call{
        padding: 0px !important; 
        color: white !important;
        background-color: rgba(0, 0, 0, 1);
        font-size: 20px !important; 
        font-weight: bold;
    }
}
.header-bar-nav a {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
}
@media (min-width: 768px) {
    .header-bar-nav a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
        margin: 0 1em;
        transition: color 0.3s ease;
    }
}

.logo-container img {
    width: 150px;
}

.header-bar-nav {
    display: flex;
    gap: 5px;
}

.nav-link {
    text-decoration: none;
    color: black;
    padding: 10px;
}

/* Active link (adds underline) */
.nav-link.active {
    border-bottom: 3px solid #3E89EC; /* Change color as needed */
    font-weight: bold;
}
.header-bar-nav a {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
}

.header-bar-nav a:hover {
    background-color: #e9ecef;
    border-radius: 5px;
}

/* Hide the icon by default */
.icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.popupa {
    display:none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    padding: 30px !important;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 450px;
    height: 300px;
}
@media (max-width:768px) {
    .popupa  {
        padding: 20px !important;
        width: auto !important;
        height: auto !important;
    } 
}
.popupa.show {
    display: block;
    opacity: 1;
    padding: 20px;
}
.popupa.hide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.popupa-image {
    width: 220px;
    height: 195px;

    margin-bottom: 10px;
}





/* Side Navigation */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
     /* padding-top: 60px; */



     position: fixed;
     height: 100%;
     width: 0;
     background-color: rgba(0, 0, 0, 1); /* Fully opaque black */
     overflow-x: hidden;
     transition: 0.5s;
     z-index: 1100 !important; /* Higher than header-nav to prevent overlap */
 
}

.closebtn{
    padding-left: 220px !important;
}
.sidenav-logo {
    width: 130px; 
    margin-bottom: 20px;
    margin-left: -34px;
} 

.logo-link {
    display: block;
    text-align: center;
    padding: 10px 0;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    /* color: #818181; */
    color: white !important;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.droupdown {
    position: relative;
}

.droupdown-btn {
    cursor: pointer;
}

.droupdown-content {
    display: none;
    background-color: #333;
    padding-left: 40px;
}

.droupdown-content a {
    font-size: 20px;
    color: #818181;
    text-decoration: none;
    display: block;
}

.droupdown-content a:hover {
    color: #f1f1f1;
}


/* Responsive Styling for Small Screens */
@media screen and (max-width: 768px) {
    .icon{
        color: #333 !important;
    }
    .header-bar-nav {
        display: none; /* Hide horizontal nav */
    }

    .icon {
        display: block; /* Show hamburger icon */
        padding: 0 10px 0 0!important;

    }
}

.unique-text {
    color: #3E89EC; /* Change this to your desired color */
}


.contact-us-section {
    /* display: table; */
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 70px;
    margin: 20px 10px;
    gap: 30px;
}

.contact-info {
    flex: 1;
    /* max-width: 40%; */
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.2px;
}

.section-title {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 1rem;
    color: #3e89ec;
    line-height: 1.6;
}

.contact-form {
    flex: 2;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.tab {
    font-size: 1rem;
    font-weight: bold;
    color: #7c818b;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 15px;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.tab.active {
    color: #333;
    border-bottom: 2px solid #333;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.9rem;
    color: #2a2a2a;
    margin-bottom: 5px;
}

.form-field input,
.form-field textarea {
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #fcfaf6;
}

.form-field.full-width {
    flex: 1 0 100%;
}

.privacy-policy {
    font-size: 0.8rem;
    color: #7c818b;
    margin: 20px;
}

.privacy-policy a {
    color: #b2d4f4;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.submit-button {
    font-size: 1rem;
    color: #fff;
    background-color: #216DCE;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #333;
}

/* Media Query for Small Screens */
@media screen and (max-width: 768px) {
    .contact-us-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .form-group {
        flex-direction: column;
    }
}

.size {
    font-size: 2.5rem !important;
    font-weight: bold !important;
    color: #1f253d !important;
    
}
@media screen and (max-width: 768px) {
    .size {
        font-size: 1.8rem !important;
        font-weight: bold !important;
        color: #1f253d !important;
        
    }
}




.contact-details-section {
    padding: 50px;
    background-color: #29201700;
    text-align: center;
}

.contact-heading {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1rem;
    color: #7c818b;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.contact-item {
    flex: 1;
    max-width: 200px;
}

.contact-item h3 {
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 0.9rem;
    color: #7c818b;
    line-height: 1.5;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Media Query for Small Screens */
@media screen and (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
}


/* Footer container */
.footer-container {
    position: relative;
    background-color: rgb(255, 255, 253);
    ;
    padding: 0px 20px;
    padding-top: 30px;
    text-align: center;
    overflow: hidden;
}


/* Curve effect at the top */
.footer-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color:  rgb(255, 255, 253);
    border-radius: 50% 50% 0 0;
}

/* Footer content wrapper */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Main heading */
.heading {
    color: #2d3748;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Join button */
.join-button {
    display: inline-block;
    background-color: #216DCE;
    color: #fafbfc !important;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    /* margin-bottom: 60px; */
    transition: background-color 0.3s ease;
}

.join-button:hover {
    background-color: #333;
}

@media screen and (max-width: 600px) {
    .contact-us-section {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        margin: 10px;
        gap: 20px;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
        padding: 20px;
    }

    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .contact-details-section {
        padding: 30px;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        max-width: 100%;
    }

    .footer-container {
        padding: 20px;
    }

    .heading {
        font-size: 36px;
    }

    .join-button {
        padding: 10px 24px;
        font-size: 1rem;
    }
}








  .a {
    background-color: rgb(255, 255, 253);
    color: #333;
    text-align: center;
    padding: 20px 0;
  }

  .b {
    /* margin-bottom: 10px; */
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 15px;
  }

  .c {
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .c:hover {
    transform: scale(1.1);
    opacity: 0.8;
  }

  .d {
    /* height: 20px; */
    width: 30px;
    transition: filter 0.3s ease;
  }

  .d:hover {
    filter: brightness(1.2);
  }

  .e {
    font-size: 14px;
    color: #333;
    padding: 30px 0 0;
    max-width: 850px;
    margin: 0 auto;
  }

  .f {
    color: #333;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }

  .f:hover {
    color: #007bff; /* Blue hover effect */
    text-decoration: underline;
  }

  .f:not(:last-child)::after {
    content: " | ";
    color: #333;
  }

  /* Animation on load */
  .c, .f {
    animation: fadeIn 1s ease-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }




.footer {
    padding: 40px 0 40px;
    background: #0b0d1f;
    margin-top: 50px; /* Dark background */
    color: white;
    text-align: center;
    position:relative ;
    bottom: 0;  
    width: 100%;
  }

  .footer img {
    height: 60px; /* Adjust logo height */
    display: block;
    margin: 0 auto 20px auto; /* Center the logo with margin below it */
  }

  .footer span {
    font-size: 14px; /* Font size for text */
  }

/* Social links section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px;
}

/* Individual icon styling */
.social-links a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2); /* Slight zoom effect on hover */
}
/* Navigation links */
.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 90px;
    margin-bottom: 30px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d3748;
}

/* Copyright text */
.copyright {
    color: #4a5568;
    font-size: 14px;
}

/* Scroll to top button */
.scroll-top {
    position:absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 100;
    display: none;
}

.scroll-top:hover {
    background-color: #f8f9fa;
}
@media (max-width: 768px) {
    .scroll-top {
       
        display: none;
    }}

/* Responsive styles */
@media (max-width: 768px) {
    .heading {
        font-size: 36px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 12px 15px;
    }

    .heading {
        font-size: 28px;
    }

    .join-button {
        padding: 10px 24px;
        font-size: 14px;
    }
}






.accordion-button {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: background 0.3s;
}

.accordion-button:hover {
    background-color: #92cde6;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease;
    color: #555;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.arrow {
    font-size: 16px;
    color: #666;
}

   /* General Animations */
   /* .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-in-out forwards;
}

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-in-out forwards;
} */

/* .zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s ease-in-out forwards;
} */

/* .fabe-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
} */

/* Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide-in animation for sections */
.slide-in {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}
.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Feature card hover effect */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


/* css written by kumar------------- */

.join{
    margin: auto;
    padding: 10px;
    /* background-color: red; */

 }
 .join h1{
     text-align: center;
     padding: 18px;
 }

.call{
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    /* background-color: #007bff; */
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.ringing-icon {
    font-size: 22px !important;  /* Adjust icon size */
    color:white;  /* Green color */
    animation: ring 1s infinite ease-in-out;
    margin: 0 20px 7px 0 !important;
}


/* contact section */
.contact-details-section {
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.contact-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 10px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
}

.contact-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
}


.awesome-erp {
    /* background-color: #004080;  */
    background-color:#007bff; /* Dark Blue */
    color: white;
    width: 100%;
    padding: 50px 0;
}

.erp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: auto;
}

.erp-left, .erp-right {
    text-align: center;
    padding: 20px;
}

.erp-divider {
    width: 2px;
    height: 80px;
    background-color: white;
}

.help-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    border: 2px solid #6aa5ff;
    background-color: #007bff;
    color:white;
    padding: 12px 24px;  
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(99, 91, 255, 0.3);
}
 
.help-btn:hover {
    background-color: #2c7ffa;
    color: #fff;
    text-decoration: none;
}
.call a{
    text-decoration: none !important;
    color: white !important;
   

}
 
/* Responsive Design */
@media (max-width: 768px) {
    .sidenav a {
        padding: 8px 8px 8px 22px;
        text-decoration: none;
        font-size: 15px !important;
        /* color: #818181 !important; */
        color: white !important;
        display: block;
        transition: 0.3s;
    }
    .ringing-icon {
        font-size: 15px !important;  /* Adjust icon size */
        color:white;  /* Green color */
        animation: ring 1s infinite ease-in-out;
        margin: 0 !important;
    }
    .help-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 16px;
        color: white !important;
    }
}
 
@media (max-width: 480px) {
    .help-btn {
        text-wrap:10px;
        width: 15%;
        left: 5%;
        bottom: 5%;
        text-align: center;
        padding: 10px 0;
        font-size: 8px;
    }
}
 



@media (max-width: 768px) {

    .erp-container {
       padding: 0;
       font-size: small;
       display: flex;  /* Ensure it's a flex container */
       flex-direction: column; /* Stack items in small screens */
       text-align: center;
       align-items: center;
       justify-content: center;
   }

   .erp-left, .erp-right {
       text-align: center; 
   }

   .erp-divider {
       width: 80px !important;  /* Vertical line */
       height: 2px !important;
       background-color: white; /* Adjust based on theme */
       margin: 10px auto;
   }
}


@media (min-width: 768px) {

    .erp-left, .erp-right {
        width: 45% !important;
    }
   
}

@media  screen and (max-width:1024px) {
    .header-nav{
        padding: 0px 0 0px 5px !important;
        font-size: 10px !important;
    }
    .header-bar-nav{
        gap: 0 !important;
    }
    .call h4{
        padding: auto !important;
        font-size: 17px !important;
    }
}
