   /* General Body Styling */
   
    /* Main section background */
   
        .main {
            background-color: #1e1e1e;
            padding: 10px 0;
            margin-top: -100px !important;
        }

    /* Audit/Contact Section */
    .Audit {
      background-image: url('../images/contact-us/crown.png');
      
      background-size: 100% 100%;
      background-position: center;
      background-repeat: no-repeat;
      color: white;
    }

    /* Footer Styling */
    .footer {
      background-color: #1e1e1e;
      color: white;
      padding: 0px 20px;
      margin-bottom: -40px;
    }

    .footer p {
      margin-bottom: 0;
      font-size: 10px;
      font-weight: 400;
      line-height: 1.4;
    }

    .social-icon {
      margin-right: 8px;
      font-size: 16px;
      color: white;
      transition: color 0.3s ease;
    }

    .social-icon:hover {
      color: #ccc;
    }

    @media (max-width: 768px) {
      .footer .row>div {
        margin-bottom: 10px;
        text-align: center;
      }

      .footer {
        text-align: center;
      }
    }

 

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }


        /* Content Section */
        .content-section {
            padding: 80px 0;
        }

        .content-left {
            padding-right: 50px;
        }

        .contact-title {
            font-size: 4rem;
            font-weight: 800;
            color: #3076BB;
            margin-bottom: 0;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 2.8rem;
            font-weight: 400;
            color: #fff;
            margin-bottom: 0;
        }

        .persona-title {
            font-size: 3rem;
            font-weight: 700;
            color: #3076BB;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .description {
            font-size: 22px;
            font-weight: 300;
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 500px;
            text-align: justify;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn-email, .btn-chat {
            padding: 12px 30px;
            font-weight: 700;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-email {
            background: linear-gradient(45deg, #3076BB, #4a8bc2);
            color: white;
            border-radius: 5px;
        }

        .btn-chat {
            background: transparent;
            color: #fff;
            border-radius: 5px;
        }

        .btn-email:hover {
            background: linear-gradient(45deg, #4a8bc2, #3076BB);
            transform: translateY(-2px);
        }

        .btn-chat:hover {
           color: white;
            transform: translateY(-2px);
        }

        /* Form Container */
        .form-container {
            /* background: rgba(20, 20, 20, 0.9); */
            /* border: 1px solid rgba(48, 118, 187, 0.3); */
            border-radius: 15px;
            padding-bottom: 10%;
            /* backdrop-filter: blur(10px); */
            /* height: 80vh; */
            overflow: hidden;
            position: relative;
        }

        /* Form Header */
        .form-header {
            padding: 30px 40px 20px 40px;
            /* border-bottom: 1px solid rgba(48, 118, 187, 0.2); */
            /* background: rgba(48, 118, 187, 0.1); */
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            
        }
       

        .form-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
            padding-left: 5px; 
        }

        .form-subtitle {
            font-size: 0.9rem;
            color: #ccc;
            padding-left: 5px;
            line-height: 1.4;
        }

           /* Scrollable Form Area */
        .form-scrollable {
            height: 290px;
            overflow-y: auto;
              padding: 10px 8px 10px 72px;
    position: relative;
    right: 28px;
        }

        /* Custom Scrollbar */
        .form-scrollable::-webkit-scrollbar {
            width: 6px;
          }

        .form-scrollable::-webkit-scrollbar-track {
           
          border-radius: 2px;
            margin-top: 50px;
            margin-bottom: 180px;
            
            background-color: #1e1e1e;
        }

        .form-scrollable::-webkit-scrollbar-thumb {
            border-radius: 4px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background-color:  #2e2e2e  ;
        }


        /* Form Fields */
        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #fff;
            margin-bottom: 8px;
            display: block;
        }

        .optional {
            color: #888;
            font-weight: 300;
        }

        .form-control, .form-select {
            background: transparent;
            border: none;
            border-bottom: 1px solid #555;
            color: #fff;
            padding: 10px 0;
            font-size: 1rem;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .form-control:focus, .form-select:focus {
            background: transparent;
            box-shadow: none;
            color: #fff;
            outline: none;
        }

        .form-control::placeholder {
            color: #888;
        }

        .form-select option {
            background: #222;
            color: #fff;
        }

        textarea.form-control {
            min-height: 80px;
            resize: vertical;
        }


        /* Submit Button */
        .submit-container {
          

        }



        /* footer  */

        
        .footer {
            background-color: #1e1e1e;
            color: white;
            padding: 0px 20px;
            /* reduced padding */
            margin-bottom: -40px;
            margin-top: 10px;
        }

        .footer p {
            margin-bottom: 0;
            font-size: 10px;
            font-weight: 400;
            line-height: 1.4;
        }

        .social-icon {
            margin-right: 8px;
            font-size: 16px;
            color: white;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: #ccc;
        }

        @media (max-width: 768px) {
            .footer .row>div {
                margin-bottom: 10px;
                text-align: center;
            }

            .footer {
                text-align: center;
            }
        }

        .btn-submit {
 background: black;
            color: white;
            border: none;
            padding: 12px 1px;
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
        }

        .btn-submit:hover {
            background: linear-gradient(45deg, #4a8bc2, #3076BB);
            transform: translateY(-2px);
        }

        /* File Upload Styling */
        .file-upload-container {
            position: relative;
            margin-top: 10px;
        }

        .file-upload-btn {
            background: rgba(48, 118, 187, 0.2);
            border: 1px solid #3076BB;
            color: #3076BB;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .file-upload-btn:hover {
            background: rgba(48, 118, 187, 0.3);
        }

        .file-name {
            margin-top: 5px;
            font-size: 0.8rem;
            color: #ccc;
        }


        
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 40px;
            background: #000;
            color: #fff;
            position: relative;
        }

        .logo img {
            height: 50px
        }

        /* Center links */
        .nav-links {
            display: flex;
            gap: 10px;
            flex: 1;
            justify-content: center;
            transition: max-height .3s ease;
        }

        .nav-links li {
            list-style: none;
            position: relative;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            padding: 8px;
            display: block;
            font-weight: 500;
        }

        .nav-links li:hover>a {
            color: #0af
        }

        .nav-links ul {
            display: none;
            position: absolute;
            top: 35px;
            left: 0;
            background: #111;
            border-radius: 4px;
            padding: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            min-width: 160px;
            z-index: 10;
        }

        .nav-links li:hover>ul {
            display: block
        }

        .nav-links ul li {
            margin-bottom: 6px
        }

        .nav-links ul li:last-child {
            margin-bottom: 0
        }

        .nav-links ul a:hover {
            color: #0af
        }

        /* Right side */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-right button {
            background: none;
            border: none;
            color: #fff;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-right img.flag {
            width: 18px
        }

        /* Mega-menu */
        .mega-menu {
            position: absolute;
            top: 60px;
            right: 20px;
            background: #111;
            color: #fff;
            padding: 20px;
            border-radius: 6px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
            display: none;
            width: 90%;
            max-width: 1000px;
            z-index: 1000;
        }

        .mega-menu.show {
            display: block
        }

        .mega-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .mega-col {
            flex: 1 1 150px;
        }

        .mega-col h4 {
            margin-bottom: 8px;
            font-size: 16px;
            border-bottom: 1px solid #333;
            padding-bottom: 4px;
        }

        .mega-col ul {
            list-style: none
        }

        .mega-col li {
            margin-bottom: 6px
        }

        .mega-col a {
            color: #ddd;
            text-decoration: none;
            font-size: 14px;
        }

        .mega-col a:hover {
            color: #0af
        }

        /* Hamburger */
        .hamburger {
            display: none;
            font-size: 22px;
            background: none;
            border: none;
            color: #fff;
        }

        /* MOBILE */
        @media(max-width:992px) {
            .nav-links {
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: #000;
                max-height: 0;
                overflow: hidden;
            }

            .nav-links.show {
                max-height: 500px;
            }

            .nav-links li {
                width: 100%
            }

            .nav-links ul {
                position: static;
                box-shadow: none;
                background: #111;
                margin-left: 10px;
            }

            .mega-menu {
                position: static;
                width: 100%;
                margin-top: 10px;
            }

            .mega-content {
                flex-direction: column;
            }

            .mega-col {
                flex: 1 1 100%
            }

            .hamburger {
                display: block
            }
        }



        
.marqueeajust{
    height: 100% !important;
    width: 100%;
    margin-left: -11%;
}
.marqueeajustright{
    height: 100% !important;
    width: 100%;
        margin-left: 13%;
}
/* marquee section css */
.marquee-wrapper
{
  width: 80%;
  transform: translateY(-10px);
  margin-left: 7.5%;
}
.marquee-text{
    color: white;
}
.marquee-text-container {
 
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-text-track {
  display: flex;
  animation: scroll-loop 20s linear infinite;
}

.marquee-text {
  flex-shrink: 0;
  color: white;
  padding-right: 100px; /* Space between repetitions */
  display: flex;
  align-items: center;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.big-toast {
  min-width: 500px !important;
  max-width: 600px !important;
  border-radius: 30px  !important;
  background: linear-gradient(135deg, #00b09b, #96c93d) !important;
  color: white !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 10px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35) !important;
  z-index: 9999 !important;
  text-align: center !important;
  letter-spacing: 0.5px !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(8px) !important;
}

.big-toast::before {
  content: "★" !important;
  display: inline-block !important;
  margin-right: 10px !important;
  font-size: 20px !important;
  color: #fff176 !important;
}

.big-toast.swal2-icon-success {
  background: linear-gradient(135deg, #1dd1a1, #10ac84) !important;
}

.big-toast.swal2-icon-error {
  background: linear-gradient(135deg, #ff6b6b, #ee5253) !important;
}

   @media (max-width: 767px) { 

   .formm {
    width: 100%;
   } 
      .logoo img {
            height: 8vh !important;
        }


     .contact-title {
            font-size: 42px;
            font-weight: 800;
            color: #3076BB;
            margin-bottom: 0;
            line-height: 1.1;
        }

        .subtitle {
            font-size: 2rem;
            font-weight: 400;
            color: #fff;
            margin-bottom: 0;
        }

        .persona-title {
            font-size: 36px;
            font-weight: 700;
            color: #3076BB;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .description {
            font-size: 19px;
            font-weight: 300;
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 100%;
        }
        .content-left {
    padding-right: 9px;
    margin-top: 10%;
}
.form-scrollable {
    height: 20vh;
}
.form-container {
    height: 55vh;
}
   }

@media (max-width: 968px) and (min-width: 768px) {
.content-left {
        width: 100%;
        margin-left: 3%;
        margin-top: 5%;
    }
.description { 
    max-width: 100%;
}
.form-section {
    width: 100%;
}
.form-container {
    height: 55vh;
}

}
@media (max-width: 1028px) and (min-width: 969px) {
.content-left {
        width: 100%;
        margin-left: 3%;
        margin-top: 5%;
    }
.description { 
    max-width: 100%;
}
.form-section {
    width: 100%;
}
.form-container {
    height: 45vh;
}

}   