/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
	
}

/* Top Bar */
.top-bar {
    background: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-left, .contact-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-left i, .contact-right i, .working-hours i {
    color: teal;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1px 10px;
    position: fixed;
    width: 100%;
    top: 35px;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
}

.sticky {
    top: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    font-size: 14px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 8px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: teal;
}

/* Social Icons */
.social-icons a i {
    font-size: 20px;
}

/* Menu Button for Mobile */
.menu-btn {
    display: none;
    background: teal;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 55px;
        right: 10px;
        background: white;
        width: 200px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 15px;
        border-radius: 5px;
    }

    nav.show {
        display: flex;
    }
	
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .menu-btn {
        display: block;
    }
	.working-hours {
        display: none;
    }
	.email-text {
        display: none;
    }
	.welcome {
		display: none;
	}
}

/* Hero Section */
.hero {
    background: url('image/b1.jpg') no-repeat center center/cover;
    height: 95vh;
    max-height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.hero-overlay {
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Text Scaling */
@media screen and (max-width: 768px) {
    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    background: teal;
    color: white;
    padding: 12px 25px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #008ba3;
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: white;
    animation: bounce 1.5s infinite ease-in-out;
    cursor: pointer;
}

/* Animation */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Responsive Grid */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Layout for Content Sections */
.section {
    padding: 50px 20px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .section {
        padding: 30px 15px;
    }
}



/* Scroll to Top */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: none; /* Initially hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn:hover {
    background-color: #0056b3;
}

#scrollToTopBtn.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* About us */
.tax-advice-text {
    font-family: "Poppins", sans-serif; /* Professional modern font */
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50; /* Dark blue for a corporate feel */
    text-align: center;
    margin: 0px 0;
    letter-spacing: 1px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
/*	font-family: Nunito, sans-serif;*/
	font-family: 'Montserrat', sans-serif; 
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 25px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

a {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 00px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
  
}

.responsive-container-block.bigContainer {
  padding-top: 00px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 50px 10px 50px;
}

.mainImg {
  color: black;
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.text-blk.headingText {
  font-size:25px;
  font-weight: 700;
  line-height: 30px;
  color: teal;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
  align-self: center;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 40%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.text-blk.subHeadingText {
  color: rgb(102, 102, 102);
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.text-blk.description {
  font-size: 18px;
  line-height: 26px;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  font-weight: 400;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.explore {
  font-size: 16px;
  line-height: 28px;
  color: rgb(102, 102, 102);
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(102, 102, 102);
  border-right-color: rgb(102, 102, 102);
  border-bottom-color: rgb(102, 102, 102);
  border-left-color: rgb(102, 102, 102);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  background-color: white;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 8px;
  padding-right: 40px;
  padding-bottom: 8px;
  padding-left: 40px;
  align-self: center;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: teal;
  color: white;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  align-self: center;
}

.responsive-container-block.Container {
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  flex-direction: row-reverse;
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  position: static;
}

.allText.aboveText {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
}

.allText.bottomText {
	transform: translateX(-60px);
  width: 90%; /* Adjust width dynamically */
  max-width: 400px; /* Prevent it from becoming too wide */
  min-height: 300px; /* Allow flexible height */
  max-height: 460px; /* Prevent excessive growth */
  overflow-y: auto; /* Scroll when needed */
  overflow-x: hidden;

  /* ðŸŒŸ Modern Box Styling */
  background: rgba(255, 255, 255, 0.2); /* Light transparency */
  backdrop-filter: blur(10px); /* Glass effect */
  border: 2px solid rgba(255, 255, 255, 0.3); /* Light border */
  border-radius: 15px; /* Smooth rounded corners */
  padding: 20px;
  padding-top: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */

  /* ðŸŽ¨ Custom Scrollbar */
  scrollbar-width: none;
  scrollbar-color: #25D366 rgba(255, 255, 255, 0.3);
}

/* Hide Scrollbar for WebKit Browsers */
.allText.bottomText::-webkit-scrollbar {
  width: 0px;
  display: none;
}

.allText.bottomText::-webkit-scrollbar-thumb {
  background: #25D366; /* WhatsApp green */
  border-radius: 10px;
  display: none;
}

.allText.bottomText::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .allText.bottomText {
    max-width: 90%;
    min-height: 250px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .allText.bottomText {
    width: 100%;
    min-height: 220px;
    padding: 15px;
	
  }
}

@media (max-width: 500px) {
  .allText.bottomText {
    width: 100%;
    min-height: 200px;
    padding: 10px;
    border-radius: 10px;
  }
}





.purpleBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 430px;
  background-color: teal;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  bottom: -15px;
  left: -8%;
}

.purpleText {
  font-size: 16px;
  line-height: 26px;
  color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.ultimateImg {
  width: 50%;
  position: relative;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .allText.bottomText {
    margin-top: 0px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: -30px;
    text-align: left;
	padding-top: 0px;
	transform: translateX(-20px);
  }

  .text-blk.headingText {
    text-align: center;
  }

  .allText.aboveText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .text-blk.subHeadingText {
    text-align: left;
    font-size: 26px;
    line-height: 32px;
  }

  .text-blk.description {
    text-align: left;
    line-height: 24px;
  }

  .explore {
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
	align-self: center;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
  }

  .responsive-container-block.Container {
    justify-content: space-evenly;
  }

  .purpleBox {
    bottom: 10%;
  }

  .responsive-container-block.Container.bottomContainer {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    max-width: 930px;
  }

  .allText.bottomText {
    width: 40%;
  }

  .purpleBox {
    bottom: auto;
    left: -10%;
    top: 70%;
  }

  .mainImg {
    width: 100%;
  }

  .text-blk.headingText {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .allText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 24px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 18px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .mainImg {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: -70px;
    margin-left: 0px;
  }

  .responsive-container-block.Container.bottomContainer {
    flex-direction: column;
  }

  .ultimateImg {
    width: 100%;
  }

  .purpleBox {
    position: static;
  }

  .allText.bottomText {
    width: 100%;
    align-items: flex-start;
	padding-top: 310px;
	transform: translateX(0px);
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
  }

  .text-blk.description {
    text-align: left;
  }

  .ultimateImg {
    position: static;
  }

  .mainImg {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .ultimateImg {
    position: relative;
  }

  .purpleBox {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    position: absolute;
    left: 0px;
    top: 80%;
  }

  .allText.bottomText {
    margin-top: 100px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 24px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 28px;
  }

  .text-blk.description {
    font-size: 16px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 22px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }

  .allText.bottomText {
    margin-top: 50px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    
    margin: 30px 0 0 0;
	padding-top: 650px;
	transform: translateX(0px);
  }

  .ultimateImg {
    position: static;
  }

  .purpleBox {
    position: static;
  }

  .stars {
    width: 55%;
  }

  .allText.bottomText {
    margin-top: 75px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .purpleText {
    font-size: 16px;
    line-height: 22px;
  }

  .explore {
    padding: 6px 35px 6px 35px;
    font-size: 15px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}
/* About us End */
/*Services */


.section-title {
	margin-top:20px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #007BFF, #00C9A7);
    padding: 15px 30px;
    display: inline-block;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.section-title:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.service-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-box img {
    width: 100%; /* Make sure image fills the box */
    height: 150px; /* Set a fixed height for uniformity */
    object-fit: cover; /* Crop and fit the image inside the box */
    border-top-left-radius: 8px; 
    border-top-right-radius: 8px;
}

.service-title {
    background-color: teal;
    color: white;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
}

/*Services end*/
/*Pricing*/
/* Title Box Styling */
.pricing-title-box {
    text-align: center;
    background: teal;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}


/* Pricing Card */
/*.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;  /*Adjust height as needed */ 
    /*
}
*/
.pricing-section {
    padding: 80px 20px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}
.pricing-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;

    width: 350px;   /* fixed card width */
}

.price-title {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.price-title span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
}

.service-list {
    list-style: none;
    padding-left: 22px;
    margin: 0 0 20px 0;
    text-align: left;
    flex-grow: 1;
}

.service-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 14px;
}

.service-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 9px;
    color: #2a6db3;
}

.cta-btn {
    margin-top: auto;
}
/* Price Styling */
.price {
    font-size: 22px;
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 15px;
}

/* Registration Fee */
.reg-fee {
    font-size: 16px;
    font-weight: bold;
    color: #ff4d4d;
    margin-bottom: 5px;
}
.price-title {
    font-size: 16px;
    font-weight: bold;
    color: teal;
    margin-bottom: 5px;
}
/* CTA Button */
.cta-btn {
    
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: teal;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #0056b3;
}
.gst-list {
    list-style: none; /* Removes default bullets */
    padding-left: 0;
    text-align: left; /* Aligns text to the left */
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #333; /* Dark gray for a professional look */
}

.gst-list li {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}
.tds-list {
    list-style: none; /* Removes default bullets */
    padding-left: 0;
    text-align: left; /* Aligns text to the left */
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #333; /* Dark gray for a professional look */
}

.tds-list li {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.incometax-list {
    list-style: none; /* Removes default bullets */
    padding-left: 0;
    text-align: left; /* Aligns text to the left */
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #333; /* Dark gray for a professional look */
}

.incometax-list li {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.validity {
    color: red; /* Sets text color to blue */
    font-weight: bold; /* Makes the text bold */
    display: block; /* Ensures it appears on a new line */
    margin-top: 5px; /* Adds spacing for better readability */
	text-align: center;
}


/*Pricing end*/
/*Contact us */
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* General Reset */
* {
  /*margin: 1px;*/
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Contact Section */
#contact {
  padding: 50px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  max-width: 1100px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: visible;  /* Ensure floating elements are visible */
  position: relative;
}

/* Left Side (Image) */
.left {
  flex: 1;
  min-width: 300px;
  background: url('image/contact1.jpg') no-repeat center center/cover;
  position: relative;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

/* Floating Info Box */
.info-container {
  position: absolute;
  top: 50%;
  left: -15%;  /* Adjusted to be inside visible area */
  transform: translateY(-50%);
  width: 80%;
  max-width: 250px;  /* Prevents it from getting too large */
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.info-container h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 2px solid #0575e6;
  padding-bottom: 5px;
}

.info-container h3 i {
  color: #0575e6;
  font-size: 20px;
}

.info-container p {
  margin: 10px 0;
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

/* Right Side (Contact Form) */
.right {
  flex: 2;
  min-width: 350px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.right h2 {
  color: black;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Input Fields */
.right input, 
.right textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  background: #f9f9f9;
  color: #333;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Placeholder Color */
::placeholder {
  color: #777;
}

/* Send Button */
.right button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  background: teal;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  font-weight: 600;
}

.right button:hover {
  background: #0056b3;
}

/* Jet Badge (Now Properly Positioned) */
.jet-badge {
	position: absolute;
	top: 24%;
	right: -5%;
	transform: translateY(-50%);
	width: 20%;
	height: 40%;
	display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust spacing */
}

.jet-badge img {
    width: 150%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.jet-badge img:hover {
    opacity: 1;
}

/* Responsive Design */

/* Tablet View */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    width: 90%;
  }

  .left {
    width: 100%;
    height: 250px;
    border-radius: 15px 15px 0 0;
	align-self:center;
  }

  .right {
    width: 100%;
    padding: 20px;
  }

  .info-container {
    left: 20%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    position: relative;
    margin: 20px auto;
  }

  .jet-badge {
	top: 400px;
	right: 10px;
	width: 80px;
  }
}

/* Mobile View */
/* Hide Jet Badge in Portrait Mobile View */
@media (max-width: 600px) and (orientation: portrait) {
  .jet-badge {
    display: none;
  }
}

@media (max-width: 600px) {
  .contact-container {
    width: 95%;
  }

  .left {
    height: 200px;
  }

  .right {
    padding: 15px;
  }

  .info-container {
    font-size: 14px;
    padding: 15px;
    width: 90%;
    left: 40%;
  }

  .right h2 {
    font-size: 20px;
  }

  .right input,
  .right textarea {
    font-size: 14px;
    padding: 10px;
  }

  .right button {
    font-size: 16px;
  }

  .jet-badge {
    width: 60px;
    right: 5px;
  }
}

/* Contact Section End */

/* General Footer Styling */
.footer {
    background: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: auto;
    
}

/* Footer Logo */
.footer-logo {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Footer Text */
.footer p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer a {
    color: #25D366; /* WhatsApp Green */
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social2-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social2-icons a {
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social2-icons a:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .social2-icons a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 10px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer p {
        font-size: 13px;
    }

    .social2-icons {
        gap: 10px;
    }

    .social2-icons a {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

.rating {
  position: relative;
  display: inline-block;
  font-size: 40px;
  line-height: 1;
}

/* Outline layer (always visible) */
.stars-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px white; /* white outline */
}

/* Fill layer */
.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 89%; /* 4.5 stars */
  color: white;
}