



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f0f4f8;
  color: #333;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.banner p {
    font-size: 1.5rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5rem;
    }

    .banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }
}
/* income tax page  */

/* Hero Section */
.hero {
    background-color: #1a3965;
    color: #fff;
    text-align: center;
    padding: 100px 0;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Info Section */
  .info-section {
    position: relative;
    padding: 100px 0;
    background-color: #f0f4f8;
  }
  
  .info-section .info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .info-section .shapes {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .shape-circle {
    width: 200px;
    height: 200px;
    background-color: rgba(26, 57, 101, 0.2);
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: -50px;
    animation: rotateCircle 5s infinite linear;
  }
  
  .shape-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 200px solid rgba(26, 57, 101, 0.2);
    position: absolute;
    bottom: -50px;
    right: -50px;
    animation: floatTriangle 5s infinite ease-in-out;
  }
  
  @keyframes rotateCircle {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes floatTriangle {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  .info-section .info-text {
    max-width: 600px;
  }
  
  .info-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3965;
  }
  
  .info-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  /* File ITR Section */
  .file-itr-section {
    padding: 100px 0;
    background-color: #1a3965;
    color: #fff;
    text-align: center;
  }
  
  .file-itr-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .file-itr-section ul {
    list-style-type: none;
  }
  
  .file-itr-section ul li {
    font-size: 1.1rem;
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    display: inline-block;
  }


/* Benefits Section */
.benefits-section {
    background-color: #1a3965;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
  }
  
  .benefits-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .benefits-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .benefits-cards .card {
    background-color: #fff;
    color: #333;
    width: 30%;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .benefits-cards .card:hover {
    transform: translateY(-10px);
  }
  
  .benefits-cards .card h4 {
    font-size: 1.5rem;
    color: #1a3965;
  }
  
  .benefits-cards .card p {
    color: #666;
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .benefits-cards .card {
      width: 100%;
    }
  }
  /* Section Styling */
.documents-section {
    background-color: #f4f8fb;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #1a3965;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-in-out;
}

/* Documents Cards Styling */
.documents-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 40px;
    color: #1a3965;
    margin-bottom: 15px;
}

.card h4 {
    font-size: 18px;
    color: #333;
}

/* Fade In Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make it responsive */
@media (max-width: 768px) {
    .documents-cards {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        width: 100%;
    }
}

  
  /* FAQ Section */
  .faq-section {
    background-color: #add0f3;
    padding: 100px 20px;
    text-align: center;
  }
  
  .faq-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .faq {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .faq-item h4 {
    font-size: 1.5rem;
    color: #1a3965;
  }
  
  .faq-item p {
    font-size: 1rem;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .faq-section h3 {
      font-size: 1.8rem;
    }
    .faq-item h4 {
      font-size: 1.3rem;
    }
  }

  /* gst page css */

/* GST Process Section */
.gst-process-section {
    position: relative;
    padding: 100px 20px;
    background-color: #1a3965;
    color: #fff;
    overflow: hidden;
  }
  
  .gst-process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
  }
  
  .gst-process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .step-card {
    background-color: #fff;
    color: #333;
    width: 18%;
    padding: 30px 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .step-card:hover {
    transform: translateY(-10px);
  }
  
  .step-card .icon-wrapper {
    margin-bottom: 20px;
  }
  
  .step-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a3965;
  }
  
  .step-card p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .step-card {
      width: 45%;
    }
  }
  
  @media (max-width: 768px) {
    .step-card {
      width: 100%;
    }
    .gst-process-section h2 {
      font-size: 2rem;
    }
  }
  
  /* Background Shapes */
  .background-shape {
    position: absolute;
    opacity: 0.15;
    z-index: 1;
  }
  
  .circle {
    width: 300px;
    height: 300px;
    background-color: #4caf50;
    border-radius: 50%;
    top: -50px;
    left: -150px;
    animation: rotateShape 10s infinite linear;
  }
  
  .triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 300px solid #fff;
    position: absolute;
    bottom: -150px;
    right: -50px;
    animation: floatShape 6s infinite ease-in-out;
  }
  
  .square {
    width: 250px;
    height: 250px;
    background-color: #4caf50;
    position: absolute;
    top: 150px;
    right: -100px;
    animation: floatShape 8s infinite ease-in-out;
  }
  
  /* Shape Animations */
  @keyframes rotateShape {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes floatShape {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
/* Main container for the section */
.gst-section {
    background: url('../assets/b1.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Blur the background image */
.gst-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1;
}

/* Information and form container */
.info-form-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    z-index: 2; /* Ensure it's above the background */
}

/* Left section with GST info */
.left-section {
    flex: 1;
    padding: 20px;
    color: white;
}

.left-section h1 {
    font-size: 36px;
    color: rgb(238, 230, 230);
}

.left-section p {
    color: white;
    margin: 10px 0;
}

.info-icons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.icon-box {
    text-align: center;
    color: white;
}

/* Right section with the form */
.form-section {
    flex: 0.5;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    font-size: 24px;
    color: #1a3965;
    margin-bottom: 20px;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section input,
.form-section select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-section button {
    padding: 12px;
    background-color: #f7931e;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-section button:hover {
    background-color: #1a3965;
}

/* Make it responsive */
@media (max-width: 768px) {
    .info-form-container {
        flex-direction: column;
    }

    .left-section {
        text-align: center;
        margin-bottom: 20px;
    }

    .form-section {
        width: 100%;
    }
}
/* gst FAQ */
/* FAQ Section Styling */
.faq-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    color: #1a3965;
    margin-bottom: 40px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.toggle-icon {
    font-size: 20px;
    color: #1a3965;
}

.faq-answer {
    padding: 15px 20px;
    background-color: #f4f8fb;
    display: none; /* Hidden by default */
}

.faq-answer p {
    margin: 0;
    color: #666;
}
/* ROC Page css */

/* ROC Filing Section Styling */
.roc-filing-section {
    background-color: #f0f4f8;
    padding: 60px 20px;
}

.roc-title {
    text-align: center;
    font-size: 32px;
    color: #1a3965;
    margin-bottom: 10px;
}

.roc-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.roc-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.roc-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(25% - 20px);
    transition: transform 0.3s;
}

.roc-card:hover {
    transform: translateY(-5px);
}

.roc-card h3 {
    font-size: 22px;
    color: #1a3965;
    margin-bottom: 10px;
}

.roc-card p {
    color: #555;
    margin-bottom: 20px;
}

.roc-button {
    background-color: #1a3965;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.roc-button:hover {
    background-color: #2e5f9b;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .roc-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .roc-card {
        width: 100%;
    }
}
/* DOc ROC  */
/* ROC Documents Required Section Styling */
.roc-documents-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.roc-docs-title {
    text-align: center;
    font-size: 32px;
    color: #1a3965;
    margin-bottom: 15px;
}

.roc-docs-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.roc-docs-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.roc-docs-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(30% - 20px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.roc-docs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.roc-docs-card h3 {
    font-size: 22px;
    color: #1a3965;
    margin-bottom: 10px;
}

.roc-docs-card p {
    color: #555;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .roc-docs-card {
        width: calc(45% - 20px);
    }
}

@media (max-width: 480px) {
    .roc-docs-card {
        width: 100%;
    }
}
/* Treadmark Section  */
/* Trademark Registration Section Styling */
.trademark-section {
    background-color: #1a3965;
    padding: 60px 20px;
    color: white;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.trademark-title {
    text-align: center;
    font-size: 34px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.trademark-description {
    text-align: center;
    font-size: 18px;
    color: #ddd;
    margin-bottom: 40px;
}

.trademark-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.trademark-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 25px;
    text-align: center;
    color: #1a3965;
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(25% - 20px);
}

.trademark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.trademark-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a3965;
}

.trademark-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a3965;
}

.trademark-card p {
    font-size: 16px;
    color: #666;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .trademark-card {
        width: calc(45% - 20px);
    }
}

@media (max-width: 480px) {
    .trademark-card {
        width: 100%;
    }
}
/* info section inMAHARERA Registration */
/* MAHARERA Section Styling */
.maharera-section {
  background-color: #1a3965; /* Blue background */
  color: white;
  padding: 60px 20px;
  animation: fadeInUp 1s ease-in-out;
  text-align: center;
}

.maharera-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.maharera-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin: 0 auto;
  color: #f0f0f0;
}

.maharera-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.maharera-card {
  background-color: #fff;
  color: #1a3965;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maharera-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.maharera-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.maharera-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.maharera-card p {
  font-size: 16px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .maharera-steps {
      flex-direction: column;
      align-items: center;
  }

  .maharera-card {
      max-width: 100%;
      margin-bottom: 20px;
  }

  .maharera-title {
      font-size: 28px;
  }

  .maharera-description {
      font-size: 16px;
  }
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
/* doc for MAHARERA Registration */
/* MAHARERA Documents Section Styling */
.maharera-documents {
  background: linear-gradient(135deg, #1a3965, #274b88);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.maharera-documents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('background-pattern.png'); /* Add a subtle background pattern */
  opacity: 0.1;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.doc-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.doc-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.document-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.document-item {
  background-color: white;
  color: #1a3965;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: calc(33% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.document-item i {
  font-size: 40px;
  color: #1a3965;
  margin-bottom: 15px;
}

.document-item h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.document-item p {
  font-size: 16px;
  line-height: 1.6;
}

.document-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.document-item::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: rgba(26, 57, 101, 0.1);
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s ease-in-out;
}

.document-item:hover::before {
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .document-item {
      width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .document-list {
      flex-direction: column;
      align-items: center;
  }

  .document-item {
      width: 100%;
      margin-bottom: 20px;
  }

  .doc-title {
      font-size: 32px;
  }

  .doc-description {
      font-size: 16px;
  }
}
/* digital Section info */
.digital-signature-section {
  background: linear-gradient(135deg, #1a3965, #3f71ab);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.digital-signature-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 42px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color:white;
}
.section-title h2{
 color: white;


}
.section-description {
  font-size: 18px;
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.step-card {
  background-color: white;
  color: #1a3965;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: calc(33% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.step-card i {
  font-size: 40px;
  color: #1a3965;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 16px;
  line-height: 1.6;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: rgba(26, 57, 101, 0.1);
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s ease-in-out;
}

.step-card:hover::before {
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .step-card {
      width: calc(50% - 20px);
  }

  .section-title {
      font-size: 36px;
  }

  .section-description {
      font-size: 16px;
  }
}

@media (max-width: 768px) {
  .steps {
      flex-direction: column;
  }

  .step-card {
      width: 100%;
  }
}
/* licensing section */
/* licensing section */
      /* Section Styling */
      .licensing-section {
        background-color: #1a3965;
        color: white;
        padding: 80px 20px;
        text-align: center;
        position: relative;
    }

    .licensing-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(135deg, #1a3965 40%, #3d6b94 100%);
        opacity: 0.9;
        z-index: -1;
    }

    .section-title {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 20px;
        color: white;
        animation: slideInDown 1.5s ease-in-out;
        letter-spacing: 2px;
    }

    .section-description {
        max-width: 900px;
        margin: 0 auto;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 40px;
        color: #e0e4eb;
        animation: fadeIn 2s ease-in-out;
    }

    .info-boxes {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 40px;
    }

    .info-box {
        background-color: #ffffff;
        color: #1a3965;
        width: 30%;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
        text-align: left;
        transition: all 0.4s ease;
        cursor: pointer;
        animation: fadeInUp 2s ease;
        position: relative;
        overflow: hidden;
    }

    .info-box h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
        position: relative;
    }

    .info-box h3::after {
        content: '';
        width: 50px;
        height: 4px;
        background-color: #1a3965;
        position: absolute;
        left: 0;
        bottom: -10px;
        transition: width 0.4s ease;
    }

    .info-box:hover h3::after {
        width: 100%;
    }

    .info-box p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .info-box:before {
        content: '';
        position: absolute;
        top: -100%;
        left: -100%;
        width: 200%;
        height: 200%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
        transform: rotate(45deg);
    }

    .info-box:hover:before {
        top: 0;
        left: 0;
    }

    .info-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .info-box {
            width: 45%;
        }
    }

    @media (max-width: 768px) {
        .info-box {
            width: 100%;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 32px;
        }

        .section-description {
            font-size: 16px;
        }
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* company page  */

        /* Incorporation Section */
        .incorporation-section {
          background-color: #1a3965;
          color: white;
          padding: 80px 20px;
          text-align: center;
          position: relative;
      }

      .incorporation-section:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(135deg, #1a3965 30%, #3a5b8b 100%);
          opacity: 0.9;
          z-index: -1;
      }

      .section-title {
          font-size: 42px;
          font-weight: bold;
          margin-bottom: 20px;
          animation: slideInDown 1.5s ease;
          letter-spacing: 2px;
      }

      .section-description {
          max-width: 900px;
          margin: 0 auto;
          font-size: 18px;
          line-height: 1.8;
          margin-bottom: 40px;
          color: #d1e0ef;
          animation: fadeIn 1.8s ease;
      }
/* parthership */
     /* Partnership Section */
     .partnership-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, #1a3965 30%, #255a8c 100%);
      color: #fff;
      text-align: center;
      position: relative;
  }

  .section-title {
      font-size: 38px;
      font-weight: bold;
      margin-bottom: 20px;
      letter-spacing: 1.5px;
      animation: fadeInDown 1.5s ease;
  }

  .section-description {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 18px;
      line-height: 1.8;
      animation: fadeIn 2s ease;
  }

  /* Cards Container */
  .cards-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
  }

  .card {
      background-color: #fff;
      color: #1a3965;
      border-radius: 15px;
      padding: 30px 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      margin: 15px;
      width: 30%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      cursor: pointer;
      animation: fadeInUp 1.5s ease;
  }

  .card h3 {
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: bold;
      position: relative;
  }

  .card h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 40px;
      height: 3px;
      background-color: #1a3965;
  }

  .card p {
      font-size: 16px;
      line-height: 1.6;
  }

  .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  }

  /* Responsive Layout */
  @media (max-width: 992px) {
      .card {
          width: 45%;
      }
  }

  @media (max-width: 768px) {
      .card {
          width: 100%;
      }

      .section-title {
          font-size: 30px;
      }

      .section-description {
          font-size: 16px;
      }
  }

  /* Animations */
  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }

  @keyframes fadeInDown {
      from {
          opacity: 0;
          transform: translateY(-50px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(50px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
        /* Accounting Section */
        .accounting-section {
          padding: 80px 20px;
          background-color: #1a3965;
          color: #ffffff;
          text-align: center;
          position: relative;
      }

      .section-title {
          font-size: 36px;
          font-weight: bold;
          margin-bottom: 20px;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          animation: slideInLeft 1.5s ease-in-out;
      }

      .section-description {
          max-width: 900px;
          margin: 0 auto 40px;
          font-size: 18px;
          line-height: 1.7;
          color: #ffffff;
          animation: slideInRight 1.5s ease-in-out;
      }

      /* Flexbox Layout for Features */
      .features-container {
          display: flex;
          justify-content: space-around;
          flex-wrap: wrap;
          animation: fadeIn 2s ease-in-out;
      }

      .feature-box {
          background-color: #ffffff;
          color: #1a3965;
          border-radius: 12px;
          padding: 30px 20px;
          width: 30%;
          margin: 15px;
          box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          text-align: left;
          animation: fadeInUp 1.5s ease-in-out;
          position: relative;
          overflow: hidden;
      }

      .feature-box::before {
          content: "";
          position: absolute;
          top: -50%;
          left: 50%;
          width: 300%;
          height: 300%;
          background: rgba(255, 255, 255, 0.05);
          transition: transform 0.6s ease;
          transform: translateX(-50%) translateY(150%);
          border-radius: 50%;
      }

      .feature-box:hover::before {
          transform: translateX(-50%) translateY(-50%);
      }

      .feature-box h4 {
          font-size: 24px;
          margin-bottom: 15px;
          font-weight: bold;
          position: relative;
          text-transform: uppercase;
      }

      .feature-box h4::after {
          content: '';
          position: absolute;
          left: 0;
          bottom: -8px;
          width: 40px;
          height: 3px;
          background-color: #1a3965;
      }

      .feature-box p {
          font-size: 16px;
          line-height: 1.6;
      }

      .feature-box:hover {
          transform: translateY(-10px);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
      }

      /* Responsive Layout */
      @media (max-width: 992px) {
          .feature-box {
              width: 45%;
          }
      }

      @media (max-width: 768px) {
          .feature-box {
              width: 100%;
          }

          .section-title {
              font-size: 30px;
          }

          .section-description {
              font-size: 16px;
          }
      }

      /* Animations */
      @keyframes fadeIn {
          from {
              opacity: 0;
          }
          to {
              opacity: 1;
          }
      }

      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(50px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      @keyframes slideInLeft {
          from {
              opacity: 0;
              transform: translateX(-100px);
          }
          to {
              opacity: 1;
              transform: translateX(0);
          }
      }

      @keyframes slideInRight {
          from {
              opacity: 0;
              transform: translateX(100px);
          }
          to {
              opacity: 1;
              transform: translateX(0);
          }
        }