/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Wrapper */
#wrapper {
    width: 100%;
    margin: 0 auto;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media all and (max-width: 768px),
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
only screen and (min-resolution: 192dpi) and (max-width: 1024px),
only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    #wrapper {
        width: 100%;
    }
}

p {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: justify;
    font-size: 16px;
    letter-spacing: .5px;
    color: #575757;
    font-display: swap;
}

/* Container */
.containerz img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .containerz img {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .containerz img {
        height: 320px;
    }
}

/* iPad Pro specific optimization */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .containerz img {
        height: 360px; /* Better height for iPad Pro */
    }
}

@media (max-width: 768px) {
    .containerz img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .containerz img {
        height: 220px;
    }
}

/* High-resolution displays */
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), 
       only screen and (min-resolution: 192dpi) and (max-width: 1024px) {
    .containerz img {
        height: 240px;
    }
}
/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 3%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    border-radius: 0 0 8px 8px;
    font-family: monospace;
    text-transform: capitalize;
}

header .logo {
    text-decoration: none;
    font-weight: bolder;
    font-size: 24px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
}

/* Navbar styles */
.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a,
.navbar ul li .dropdown-label {
    font-size: 15px;
    font-weight: bolder;
    padding: 20px 15px;
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar ul li a:hover,
.navbar ul li .dropdown-label:hover {
    background: rgba(255,255,255,0.7);
    color: #34495E;
}

/* Dropdown styles */
.navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: rgba(255,255,255,0.95);
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    border-top: 2px solid #d2e016;
    border-radius: 0 0 8px 8px;
    z-index: 100;
}

.navbar ul li ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.navbar ul li ul li:last-child {
    border-bottom: none;
}

.navbar ul li ul li a {
    padding: 12px 15px;
    font-size: 14px;
    color: #000000 !important;
}

.navbar ul li ul li a:hover {
    color: #000000 !important;
    background: rgba(255,255,255,0.9);
}

/* Dropdown toggle functionality */
.dropdown-toggle {
    display: none;
}

.dropdown-label {
    position: relative;
}

/* Show dropdown on hover (desktop) */
.navbar ul li:hover > ul {
    display: block;
}

/* Show dropdown when checkbox is checked */
.dropdown-toggle:checked ~ ul {
    display: block !important;
}

/* Color styles for different menu items */
.navbar ul li:nth-child(1) a { color: #fff; }
.navbar ul li:nth-child(2) .dropdown-label { color: #fff; }
.navbar ul li:nth-child(3) .dropdown-label { color: #fff; }
.navbar ul li:nth-child(4) .dropdown-label { color: #fff }
.navbar ul li:nth-child(5) a { color: #fff; }
.navbar ul li:nth-child(6) a { color: #fff; }
.navbar ul li:nth-child(7) a { color: #fff; }
.navbar ul li:nth-child(8) a { color: #fff; }
.navbar ul li:nth-child(9) a { color: #fff; }

/* Burger menu styles */
#menu-bar {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 991px) {
    header {
        padding: 10px 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #CAD5E2;    /*to change the background color of menu dropdown in responsive format*/
        border-top: 1px solid rgba(0,0,0,.1);
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
        width: 100%;
        max-width: 100%;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .navbar ul li:last-child {
        border-bottom: none;
    }

    .navbar ul li a,
    .navbar ul li .dropdown-label {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
    }

    .navbar ul li ul {
        position: relative;
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #d2e016;
    }

    .navbar ul li ul li {
        background: #f9f9f9;
    }

    .navbar ul li ul li a {
        padding-left: 40px;
        color: #000000 !important;
    }

    .navbar ul li ul li a:hover {
        color: #000000 !important;
    }

    .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    .navbar ul li ul li ul li a {
        padding-left: 60px;
    }

    /* Hide hover behavior on mobile */
    .navbar ul li:hover > ul {
        display: none;
    }

    /* Show only when checkbox is checked on mobile */
    .dropdown-toggle:checked ~ ul {
        display: block !important;
    }

    #menu-bar:checked ~ .navbar {
        display: block;
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/*End of header*/


/* Contact Form */
.contact-form {
    width: 95%;
    max-width: 400px;
    margin: 0 auto; 
    padding-top: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-right: 60px;
    position: relative; 
    top: 10%; 
    right: 0;
    z-index: 10; 
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Responsive Adjustments: Place Contact Form Below Image */
@media (max-width: 1024px) {
    .contact-form {
        position: static; /* Remove absolute positioning */
        margin: 10px auto; /* Add margin to separate it from the image */
        width: 100%; /* Full width */
        max-width: 95%; /* Slight padding for smaller screens */
        top: unset; /* Reset top positioning */
        right: unset; /* Reset right positioning */
        z-index: 1; /* Adjust stacking to ensure it doesn't overlap */
        padding: 15px;
    }

    .containerz {
        position: relative; /* Ensure the image flows properly above */
        z-index: 0; /* Keep image below the form */
    }
}

@media (max-width: 1500px) {
    .contact-form {
        position: static; /* Remove absolute positioning */
        margin: 10px auto; /* Add margin to separate it from the image */
        width: 100%; /* Full width */
        max-width: 95%; /* Slight padding for smaller screens */
        top: unset; /* Reset top positioning */
        right: unset; /* Reset right positioning */
        z-index: 1; /* Adjust stacking to ensure it doesn't overlap */
    }

    .containerz {
        position: relative; /* Ensure the image flows properly above */
        z-index: 0; /* Keep image below the form */
    }
}

@media (min-width: 1501px) {
    .contact-form {
        max-width: 30%; /* Increase the maximum width for larger screens */
        padding: 40px; /* Optionally add more padding for a balanced layout */
    }
}
h1{font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   font-size: 25px;
   color: #575757;
   }
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
h1{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    }
    }
h2{font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   font-size: 22px;
   padding-left: 20px;
   color: #575757;
   }
h3{font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   font-size: 20px;
   padding-left: 20px;
   color: #575757;
   margin-top: 10px;
   }
h4{font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   font-size: 18px;
   padding-left: 20px;
   color: #575757;
   margin-top: 10px;
   }
@media (min-width: 1501px) {
    h1 {
       margin-top: 15px;
       text-align: center;
    }
}


@media (min-width: 1626px) {
    .contact-form {
        max-width: 30%; /* Increase the maximum width for larger screens */
        padding: 40px; /* Optionally add more padding for a balanced layout */
    }
}
@media (min-width: 1501px) {
    h1 {
       margin-top: 30px;
       text-align: center;
    }
}

@media (min-width: 1552px) {
    h1 {
       margin-top: 40px;
       text-align: center;
    }
}

@media (min-width: 1600px) {
    h1 {
       margin-top: 50px;
       text-align: center;
    }
}
@media (min-width: 1620px) {
    h1 {
       margin-top: 65px;
       text-align: center;
    }
}
@media (min-width: 1646px) {
    h1 {
       margin-top: 65px;
       text-align: center;
    }
}
@media (min-width: 1700px) {
    h1 {
       margin-top: 75px;
       text-align: center;
    }
}
@media (min-width: 1780px) {
    h1 {
       margin-top: 95px;
       text-align: center;
    }
}
@media (min-width: 1947px) {
    h1 {
       margin-top: 105px;
       text-align: center;
    }
}
@media (min-width: 1990px) {
    h1 {
       margin-top: 110px;
       text-align: center;
    }
}
@media (min-width: 2005px) {
    h1 {
       margin-top: 115px;
       text-align: center;
    }
}
@media (min-width: 1646px) {
    .contact-form {
        max-width: 30%; /* Increase the maximum width for larger screens */
        padding: 40px; /* Optionally add more padding for a balanced layout */
        margin-top: 40px;
    }
}

@media (min-width: 1794px) {
    .contact-form {
        max-width: 30%; /* Increase the maximum width for larger screens */
        padding: 40px; /* Optionally add more padding for a balanced layout */
        margin-top: 60px;
    }
}
@media (min-width: 1884px) {
    .contact-form {
        max-width: 30%; /* Increase the maximum width for larger screens */
        padding: 40px; /* Optionally add more padding for a balanced layout */
        margin-top: 70px;
    }
}
@media (min-width: 2018px) {
    .contact-form {
        max-width: 30%; /* Increase the maximum width for larger screens */
        padding: 40px; /* Optionally add more padding for a balanced layout */
        margin-top: 100px;
    }
}


@media (min-width: 2073px) {
    .contact-form {
        max-width: 30%; /* Increase the maximum width for larger screens */
        padding: 40px; /* Optionally add more padding for a balanced layout */
        margin-top: 120px;
    }
}

@media (min-width: 2300px) {
    .contact-form {
        max-width: 30%; /* Increase the maximum width for larger screens */
        padding: 40px; /* Optionally add more padding for a balanced layout */
        margin-top: 150px;
    }
}


/* Form layout: column-based */
.form-row {
    display: flex;
    flex-direction: column; /* Stack vertically */
    gap: 15px;
}

.form-group {
    width: 100%; /* Full width for fields */
    margin-bottom: 5px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #0051AD;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 25px;
}

button:hover {
    background-color: #0056b3;
}

/* Preventing the form fields from overflowing */
.form-group input, .form-group select, .form-group textarea {
    box-sizing: border-box;
}

/* Prevent the fields from floating out on small screens */
.form-row > div {
    width: 100%;
}

/* Ensure dropdowns do not overflow */
select {
    overflow-x: hidden;
}

/* Flexbox layout for adjacent fields */
.form-group-sub {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

/* Adjust the form fields inside .form-group-sub to be side by side */
.form-group-sub .form-group {
    flex: 1; /* Make them take equal width */
    margin-bottom: -3px;
}


    .rust {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      padding: 16px;
    }

    .sub-div {
      flex: 1 1 100%; /* 100% width by default */
      background: #f4f4f4;
      border: 1px solid #ddd;
      padding: 16px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .sub-div h3 {
      margin: 0 0 8px;
    }

    .sub-div p {
      margin: 0 0 16px;
    }

    .sub-div a {
      display: inline-block;
      padding: 8px 16px;
      background-color: #007bff;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      transition: background-color 0.3s;
    }

    .sub-div a:hover {
      background-color: #0056b3;
    }

    /* Responsive Design */
    @media (min-width: 768px) {
      .sub-div {
        flex: 1 1 calc(50% - 16px); /* Two columns on medium screens */
      }
    }

    @media (min-width: 1024px) {
      .sub-div {
        flex: 1 1 calc(25% - 16px); /* Four columns on large screens */
      }
    }

    .details-section {
      padding: 16px;
      background: #fff;
      border-top: 2px solid #ddd;
    }

    .details-section h4 {
      margin-top: 0;
    }
/*bracket-box*/

.bracket-box {
  display: flex;
  flex-direction: column; /* Ensures the elements stack vertically */
  align-items: flex-start;
  position: relative;
  padding: 15px;
  border: 2px solid transparent;
  margin: 20px;
}

.bracket-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-color: #007bff; /* Change this to your desired color */
  border-style: solid;
  border-width: 4px 0 4px 4px; /* Adjust thickness (boldness) here */
  height: 100%;
  width: 12px; /* Width of the bracket */
}

.bracket-box p {
  margin: 0;
  padding-left: 20px; /* Spacing between text and the bracket */
  text-align: justify;
}

.services-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center; /* Centers the "OUR SERVICES" title */
  margin-bottom: 10px; /* Adds space between the title and the paragraph */
}

.service p{
    font-size: 16px;
    margin: 2px auto;
    font-weight: 500;
}


#circle-effect p{
    text-align:justify;
    margin-top: 15PX;
    letter-spacing:1.5px;
    }
#circle-effect img {
    border-radius:20px;
    float:left;
    padding:15px;
    }

.service #circle-effect img{
    width: 20%;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
.service #circle-effect img{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    }
    }
.meeting p{
font-size: 17px;
margin: 2px auto;
}

.bracket-box #circle-effect .fore img{
    width: 20%;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
.bracket-box #circle-effect .fore img{
    width: 100%;
    }
    }



/*footer*/
/* Footer Styles */
.footer {
    background: #0d1b2a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(27, 188, 155, 0.2);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Urbanist', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Urbanist', sans-serif;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    font-family: 'Urbanist', sans-serif;
}

.footer-col {
    flex: 1;
    min-width: 300px;
    font-family: 'Urbanist', sans-serif;
}

.footer-section {
    padding: 0 15px;
    font-family: 'Urbanist', sans-serif;
}

/* Common style for footer headings */
.footer-col h5,
.footer-col h6 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
}

/* Solid underline */
.footer-col h5::after,
.footer-col h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background: #1bbc9b;
    height: 3px;
    width: 40px;
    border-radius: 3px;
}

.footer-col,
.footer-section {
    text-align: left !important;
    font-family: 'Urbanist', sans-serif;
}

/* Footer contact info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Urbanist', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Urbanist', sans-serif;
}

.contact-icon {
    color: #1bbc9b;
    font-size: 1.1rem;
    min-width: 22px;
    padding-top: 3px;
    font-family: 'Urbanist', sans-serif;
}

/* Rotated phone icon */
.phone-icon-rotated {
    transform: rotate(180deg);
    display: inline-block;
}

.contact-text {
    font-size: 1.075rem;
    color: #d1d1d1;
    line-height: 1.5;
    font-family: 'Urbanist', sans-serif;
}

/* Social section */
.social-section {
    display: flex;
    flex-direction: column;
    font-family: 'Urbanist', sans-serif;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    font-family: 'Urbanist', sans-serif;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.social-item:hover .social-icon {
    background: rgba(27, 188, 155, 0.25);
    transform: translateY(-3px);
}

.social-label {
    font-size: 0.65rem;
    color: #bbbbbb;
    margin-top: 5px;
    transition: color 0.3s;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
}

.social-item:hover .social-label {
    color: #ffffff;
}

.copyright {
    /*text-align: center;*/
    padding-top: 10px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-col {
        min-width: 100%;
    }
    
    .social-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .social-label {
        font-size: 0.6rem;
    }
}
/*end of footer*/

 /* Back to Top Button Styles */
        #backToTop {
            position: fixed;
            bottom: 65px;
            right: 5px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            background-image: url('top.jpeg'); /* Ensure 'top.jpeg' is in the same folder */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: none;
            cursor: pointer;
            outline: none;
            border-radius: 50%;
        }

        #backToTop:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease-in-out;
        }

        /* Add smooth scrolling to the top */
        html {
            scroll-behavior: smooth;
        }

        /* Example long content for scrolling */
        body {
            min-height: 2000px;
            font-family: Arial, sans-serif;
            margin: 0;
/*            padding: 20px;*/
        }
.first{
    width: 95%;
    margin: 10px auto;
}

/*circle effects*/

#circle-effect-1 p{
    text-align:justify;
    margin-top: 15PX;
    letter-spacing:1.5px;
    }
#circle-effect-1 img {
    border-radius:20px;
    float:left;
    padding:15px;
    }

#circle-effect-1 img{
    width: 20%;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
#circle-effect-1 img{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    }
    }

#circle-effect-2 p{
    text-align:justify;
    margin-top: 15PX;
    letter-spacing:1.5px;
    }
#circle-effect-2 img {
    border-radius:20px;
    float:left;
    padding:15px;
    }

#circle-effect-2 img{
    width: 20%;
}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
#circle-effect-2 img{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    }
    }
/* WhatsApp Icon Styles */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000; /* Ensure it stays above other elements */
  transition: transform 0.3s ease;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
}

.whatsapp-icon:hover {
  transform: scale(1.1); /* Enlarge the icon slightly on hover */
}

/* Responsive */
@media (min-width: 768px) {
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }
}

/*links below*/
.link-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-left: auto;
      margin-right: auto;
/*            display: block;*/
      max-width: 100%;

      padding: 20px;
      background: #ffffff;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .link-container a {
      text-decoration: none;
      color: #004599;
      font-weight: bold;
      padding: 10px 20px;
      border: 1px solid #007BFF;
      border-radius: 5px;
      transition: all 0.3s ease;
      font-size: 16px;
      flex: 1 1 calc(20% - 10px); /* Adjust the width */
      text-align: center;
    }

    .link-container a:hover {
      background-color: #007BFF;
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .link-container a {
        flex: 1 1 calc(50% - 10px); /* Two links per row on smaller screens */
      }
    }

    @media (max-width: 480px) {
      .link-container a {
        flex: 1 1 100%; /* Single link per row on very small screens */
      }
    }

    /*Breadcrum positioning*/
    /* Breadcrumb Navigation Styles */
.breadcrumb-nav {
  background: #f8fafc;
  padding: 12px 20px;
  margin: 20px 0;
  border-left: 4px solid #667eea;
  border-radius: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #2040DA;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  background: #667eea;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: #a0aec0;
  font-weight: bold;
  font-size: 16px;
  margin-left: 4px;
}

.breadcrumb li:last-child span {
  color: #2d3748;
  font-weight: bold;
  background: #e2e8f0;
  padding: 6px 12px;
  border-radius: 6px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 8px 16px;
    margin: 10px 0;
  }
  
  .breadcrumb {
    font-size: 13px;
  }
  
  .breadcrumb a, .breadcrumb span {
    padding: 4px 8px;
  }
}
/*end of breadcrum positioning*/

/*contact-form*/

        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        /* Contact Form Styles */
        .contact-form {
            width: 100%;
            margin: 20px auto;
            padding: 20px;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            background: white;
            font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        .form-title {
            text-align: center;
            margin: 10px auto;
            color: #007bff;
            font-weight: bolder;
            font-size: 24px;
        }

        /* Form layout: column-based */
        .form-row {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            width: 100%;
            margin-bottom: 5px;
        }

        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        input, select, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        textarea {
            resize: none;
        }

        button {
            width: 100%;
            padding: 12px;
            background-color: #0051AD;
            color: white;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 25px;
        }

        button:hover {
            background-color: #0056b3;
        }

        /* Flexbox layout for adjacent fields */
        .form-group-sub {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Preventing the form fields from overflowing */
        .form-group input, .form-group select, .form-group textarea {
            box-sizing: border-box;
        }

        /* Ensure dropdowns do not overflow */
        select {
            overflow-x: hidden;
        }

        /* Desktop Styles */
        @media (min-width: 768px) {
            .contact-form {
                padding: 30px;
                max-width: 100%;
            }
            
            .form-group-sub {
                flex-direction: row;
                gap: 20px;
            }
            
            .form-group-sub .form-group {
                flex: 1;
            }
        }

        /* Large Desktop Styles */
        @media (min-width: 1024px) {
            .contact-form {
                padding: 40px;
            }
        }

        /* Mobile adjustments */
        @media (max-width: 767px) {
            .contact-form {
                width: 95%;
                max-width: 400px;
            }
            
            .form-group-sub {
                flex-direction: column;
            }
        }

        /* Headings styles */
/*        h1 {
            font-size: 25px;
            margin: 20px 0;
            text-align: center;
        }

        h2 {
            font-size: 22px;
            padding-left: 20px;
            margin: 15px 0;
        }

        h3 {
            font-size: 20px;
            padding-left: 20px;
            margin: 10px 0;
        }

        h4 {
            font-size: 18px;
            padding-left: 20px;
            margin: 10px 0;
        }*/

        /*E.E.A.T*/
:root {
  --eeat-accent-color: green; /* You can change this to your brand color if needed */
}

.eeat-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  width: 100%;
  margin: 10px auto;
  background-color: #f9f9f9;
  background: linear-gradient(119deg, rgba(255, 255, 255, 1) 0%, rgba(249, 249, 249, 1) 100%);
  padding: 10px 15px;
  border-radius: 8px;
}

.eeat-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.eeat-author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.eeat-author-info .eeat-author-role {
  color: var(--eeat-accent-color);
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
}

.eeat-author-info .eeat-author-name {
  font-size: 16px;
  margin: 4px 0;
  font-weight: 600;
  text-align: left;
  color: var(--eeat-accent-color); /* Matches Author Role */
}

.eeat-author-info .eeat-date {
  color: #777;
  font-size: 14px;
}

.eeat-author-info .eeat-linkedin {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--eeat-accent-color);
  text-decoration: none;
}

.eeat-author-info .eeat-linkedin:hover {
  text-decoration: underline;
}

@media (max-width: 320px) {
  .eeat-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .eeat-author-img {
    margin-bottom: 10px;
  }
}

/*FAq*/
.faq-container {
    width: 100%;
    max-width: 75%; /* 75% width on desktop */
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: 1px auto;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

      
        
        .faq-title {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .faq-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2c3e50);
            border-radius: 2px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #eaeaea;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 20px;
            background: #f8fafc;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f0f7ff;
        }
        
        .question-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            flex-grow: 1;
            padding-right: 15px;
        }
        
        .plus-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #e3f2fd;
            color: #3498db;
            font-size: 1.5rem;
            font-weight: 300;
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
        }
        
        .plus-icon::before {
            content: '+';
            position: absolute;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: #4a5568;
            line-height: 1.6;
            background: white;
        }
        
        .faq-answer-content {
            padding: 20px 0;
        }
        
        /* Hidden checkbox for toggle functionality */
        .faq-toggle {
            display: none;
        }
        
        .faq-toggle:checked + .faq-question .plus-icon::before {
            content: '-';
        }
        
        .faq-toggle:checked + .faq-question .plus-icon {
            background: #3498db;
            color: white;
        }
        
        .faq-toggle:checked + .faq-question {
            background: #e3f2fd;
        }
        
        .faq-toggle:checked ~ .faq-answer {
            max-height: 500px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .faq-container {
                max-width: 90%;
                padding: 30px;
            }
            
            .faq-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .faq-container {
                max-width: 100%;
                padding: 20px;
                border-radius: 12px;
            }
            
            .faq-title {
                font-size: 1.6rem;
                padding-bottom: 10px;
                margin-bottom: 20px;
            }
            
            .faq-question {
                padding: 15px;
            }
            
            .question-text {
                font-size: 1rem;
            }
            
            .plus-icon {
                width: 25px;
                height: 25px;
                font-size: 1.3rem;
            }
        }