/********** Template CSS **********/
:root {
    --primary: #136468;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}


.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
    background-color: #136468 !important;
    color: #FFFFFF;
}

.btn-square,
.btn-sm-square,
.btn-lg-square :hover {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
    color: #FFFFFF;
    background-color: orangered;
}


.sticky-top {
    top: 0px;
    transition: .5s;
    
}

/* General Navbar Styles */
.sticky-top {
    top: -150px;
    transition: 0.5s;
    /* background-color: #136468 !important; */
    background-image: linear-gradient(to right, #74ebd5 0%, #136468 100%);

}

.hero-header {
    margin-top: -75px;
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
    /* background-color : #136468 !important; */
    background-image: linear-gradient(to right, #74ebd5 0%, #136468  100%);
    
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar img {
    max-width:200px !important; 
    padding-top: 15px !important; 
    padding-bottom: 10px
}

.navbar-brand-footer-img
{
    max-width:200px !important; 
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* Navbar responsive adjustments */
@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar img {
        max-width:175px !important; 
        padding-top: 0px !important; 
        padding-bottom: 0px
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }

    .navbar img {
        max-width:175px !important; 
        padding-top: 0px !important; 
        padding-bottom: 0px
    }
}

/* Dropdown-specific styles */
.dropdown-menu {
    display: none;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 20px;
    background-color: rgba(106, 146, 155, 0.9);
    color: #ffffff;
    padding: 20px;
    transition: display 0.3s ease-in-out;
}

.dropdown-menu.active {
    display: grid;
}

/* Section A: Heading, description styles */
.section-a {
    color: orange;
    padding-right: 20px;
}

.section-a h6 {
    font-size: 16px;
    font-weight: bold;
    color: orange;
    text-decoration: none;
}

.section-a .section-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Section B: Dropdown list styles (Updated for 2 columns and third column below first column) */
.section-b {
    display: grid;
    grid-template-columns: repeat(2, 200px); /* 2 columns */
    gap: 20px;
}

.section-b h6 {
    font-size: 14px;
    font-weight: bold;
}

.section-b ul {
    list-style: none;
    padding-left: 0;
}

.section-b li {
    color: rgba(255, 255, 255, 0.7);
}

.section-b li:hover {
    color: white;
}

.solution-item {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.solution-item:hover {
    color: white;
}

/* Remove the white background on hover for dropdown items */
.dropdown-item {
    background-color: transparent !important; /* No background color */
    color: rgba(255, 255, 255, 0.7); /* Default text color */
}

.dropdown-item:hover {
    background-color: transparent !important; /* No background color on hover */
    color: white; /* Text color on hover */
    font-weight: bold;
}

.solution-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: orangered;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.solution-item:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Adjust for third column in Section B on Desktop */
@media (min-width: 992px) {
    /* Third column should appear below the first column */
    .section-b .dropdown-menu > div:nth-child(3) {
        grid-column: 1 / -1; /* Places the third column below the first one */
    }
}

/* Mobile Specific: Hide description and image, show only heading and move Section B */
@media (max-width: 991px) {
    .section-a .section-description {
        display: none;
    }

    .section-b {
        margin-top: 20px;
    }

    .dropdown-menu {
        display: block;
    }

    .dropdown-menu .section-b {
        display: block;
    }
}


/* Prevent text wrapping */
.no-wrap {
    white-space: nowrap;
}

/*** Hero Header ***/


.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
    background-color : #136468 !important;
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
    background-color : #136468 !important;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}

.btn-warn
{
    background-color: orangered;
    color: white;
    height: 34px;
   font-size: 14px;
}
.btn-warn:hover
{
    background-color: white;
    color: orangered;
}
/*** Testimonial ***/



.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
   
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

a.btn.btn-primary.rounded-pill.px-4 {
    background-color: #136468 !important;
}

.logo-text
{
    vertical-align: -webkit-baseline-middle;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
}

#dot {
    position: absolute;
    z-index:100;
    top: 23px;
    left: 219px;
    width: 8px;
    height: 8px;
    background-color: orangered;
    border-radius: 50%;
    transform: translate(-40%, -40%);
    animation: animate 2s linear infinite;
    }
    @keyframes animate{
        20%{
            box-shadow: 0px 0px 0px 10px #136468;
            box-shadow: 0px 0px 0px 10px rgb(242, 229, 216);

        }
        
    }

@media (max-width: 479px) {
#dot{
    top: 50px;
    }
}

/* value container style */

/* Container XL class */
.container-xxl {
    width: 100%;
    max-width: 1400px; /* Adjust this value based on your design */
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding-left: 15px;  /* Optional, for inner spacing */
    padding-right: 15px; /* Optional, for inner spacing */
}

/* Optional: Add responsive breakpoints */
@media (max-width: 1400px) {
    .container-xxl {
        max-width: 100%;
    }
}

.valuecontainer {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Ensure boxes wrap on smaller screens */
    justify-content: center; /* Center align the boxes */
}

.valuecontainerAI {
    display: flex;
    gap: 20px;
    
    justify-content: center; /* Center align the boxes */
}

@media (max-width: 768px) {
    .valuecontainerAI {
        flex-wrap: wrap; /* Ensure boxes wrap on smaller screens */
    }
  
}


.value-box {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 350px;
}

.value-box .icon {
    background-color: orange;
    color: white;
    font-size: 36px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

.value-box .text {
    font-size: 14px;
    color: #333;
}


/* Main Section */

/* Main Section */
.translation-workflow {
    text-align: center;
    padding: 30px 20px;
}

/* Header Styles */
.precision-text {
    color: orangered; /* Accent color for subtitle */
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
}

/* Logo Container */
.logo-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.logo-container img {
    /* background-color: aliceblue; */
    height: 100px;
    object-fit: contain;
    filter: grayscale(30%); /* Optional grayscale effect */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Workflow Steps */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns in full view */
    gap: 20px;
    padding: 0 10%;
}

.step {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.step h3 {
    font-size: 28px;
    color: #409cbf;
    font-weight: 700;
    margin-bottom: 10px;
}

.step h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.step p {
    font-size: 14px;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .workflow-steps {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
        padding: 0 5%;
    }
}

@media (max-width: 900px) {
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
        padding: 0 5%;
    }
}

@media (max-width: 600px) {
    .workflow-steps {
        grid-template-columns: 1fr; /* 1 column on mobile screens */
        padding: 0 10px;
    }

    .step {
        padding: 15px; /* Reduce padding on mobile */
    }
    .value-box {
    width: 280px;
}
}

/* website transaltion sections left right */
/* Unique Section Styling */
.custom-layout-section {
    padding: 30px 20px;
    background-color: #f9f9f9;
  }
  
  .custom-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add horizontal padding */
  }
  
  /* Unique Row Styling */
  .custom-layout-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .custom-layout-content-panel {
    flex: 1;
    padding: 20px;
  }
  
  .custom-layout-content-block {
    margin-bottom: 20px;
  }
  
  .custom-layout-content-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
  }
  
  .custom-layout-content-block p {
    font-size: 16px;
    color: #555;
  }
  
  .custom-layout-image-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px; /* Add horizontal padding for images */
  }
  
  .custom-layout-image-panel img {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }


  
  /* Specific Layout: Image Right */
  .custom-layout-image-right .custom-layout-content-panel {
    order: 1;
  }
  
  .custom-layout-image-right .custom-layout-image-panel {
    order: 2;
  }
  
  /* Specific Layout: Image Left */
  .custom-layout-image-left .custom-layout-content-panel {
    order: 2;
  }
  
  .custom-layout-image-left .custom-layout-image-panel {
    order: 1;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .custom-layout-row {
      flex-direction: column;
      padding: 0 10px; /* Add left and right spacing */
    }
  
    .custom-layout-content-panel,
    .custom-layout-image-panel {
      width: 100%;
      padding: 10px 15px; /* Add consistent horizontal padding */
    }
  
    .custom-layout-image-panel img {
      width: 100%;
      height: 100%;
    }

  }
  
  .custom-header {
    text-align: center;
    margin-bottom: 40px; /* Space between the header and content sections */
  }
  
  .custom-precision-text {
    color: #409cbf; /* Accent color */
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .custom-main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #212529; /* Dark color for the main heading */
    margin-bottom: 30px;
  }
  

  /* diary turning page */
/* General Reset */
h2, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section Container */
.diary-globalization-section {
    text-align: center;
    padding: 30px;
    font-family: Arial, sans-serif;
}

/* Centered Heading */
.diary-section-heading h1 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
}

/* Navigation Tabs */
.diary-tab-navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.diary-tab-navigation li {
    cursor: pointer;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 5px;
    font-weight: bold;
    color: #333;
    transition: background 0.3s, color 0.3s;
    text-align: center;
}

.diary-tab-navigation li.active,
.diary-tab-navigation li:hover {
    background: orangered;
    color: #fff;
}

/* Content Panel */
.diary-content-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1000px;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.5s ease-in-out;
}

.diary-content {
    display: none;
    text-align: left;
    flex: 1;
    padding: 20px;
}

.diary-content.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Text Content */
.diary-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.diary-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Image Styling */
.diary-image img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Background Colors for Each Section */
#content1.active {
    background-color: #e2f8e2; /* Light Green */
}

#content2.active {
    background-color: #a0c4ff; /* Light Blue */
}

#content3.active {
    background-color: #ffe5d9; /* Light Coral */
}

#content4.active {
    background-color: #fef5d4; /* Light Yellow */
}

/* Responsive Tabs and Content */
@media (max-width: 768px) {
    /* Stack Tabs Vertically */
    .diary-tab-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .diary-tab-navigation li {
        width: 100%;
    }

    /* Stack Content Vertically */
    .diary-content-panel {
        flex-direction: column;
        text-align: center;
    }

    .diary-content {
        flex-direction: column;
        text-align: center;
    }

    .diary-image img {
        max-width: 100%;
        margin-top: 20px;
    }
}


/* Two side paragraph  */
.section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.img-fluid-two {
    float: center !important;
    width: 600px;
    height: 300px;
    margin-bottom: 20px;
   
}

@media (max-width: 768px) {
    /* Stack Tabs Vertically */
    .img-fluid-two {
     
        width: 360px !important;
       
    }
}

.section-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.row {
    margin-bottom: 20px;
}

.custom-margin
{
        margin-left: 5px;
        margin-right: 5px;
    }



/* location style  */


/* Basic Layout */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    background: #fff;
    margin: 20px auto;
    padding: 20px;
}

/* Center the heading */
.contact-section h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #FF6600;
}

.contact-cards-section {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default: 2 cards per row for desktop */
    gap: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    margin: 0 0 5px;
    font-size: 1.1em;
    color: #333;
}

.contact-card p {
    margin: 0 0 10px;
    color: #555;
    font-size: 0.9em;
}

.contact-card a {
    text-decoration: none;
    color: #FF6600; /* Orange color */
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card .fa {
    margin-right: 10px;
    color: #FF6600; /* Orange color */
}

.contact-card .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-card .contact-info i {
    margin-right: 10px;
    color: #FF6600; /* Orange color */
}

.image-section {
    flex: 1;
    padding: 20px;
    border-left: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.image-section img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .contact-cards-section {
        grid-template-columns: repeat(1, 1fr); /* One card per line on mobile */
        padding: 0;
    }

    .image-section {
        padding: 10px;
    }

    .contact-section {
        flex-direction: column; /* Stack cards and image on mobile */
    }

    .contact-cards-section h2 {
        text-align: center;
        margin-bottom: 15px;
    }

    .contact-card {
        margin-bottom: 15px;
    }
}

/* location style end  */



    /* News section  */

    .news-section {
        width: 800px;
        margin: 20px auto;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
      }
      .listy
      {
        margin-top: 10px !important; 
        margin-left: 40px !important;
        color: #666666 !important; 
        font-size: 16px !important;
      }
      .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
      }
    
      .back-to-home {
        display: inline-block;
        color: white;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 4px;
        background-color: orangered;
        transition: background-color 0.3s ease;
        text-align: center;
      }
    
      .back-to-home:hover {
        background-color: darkorange;
      }
    
      .news-date {
        font-size: 14px;
        font-weight: bold;
        color: #555;
        margin: 0;
      }
    
      .news-section h1 {
        font-size: 28px;
        color: #333333;
        margin: 20px 0;
      }
    
      .news-section .news-image {
        max-width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 8px;
      }
    
      .news-section .news-point {
        text-align: left;
        margin: 20px 0;
      }
    
      .news-section .news-point h3 {
        font-size: 20px;
        color: #555555;
        margin-bottom: 10px;
      }

      .newsh4 {
        font-size: 18px;
        color: #555555;
        margin-top: 20px !important;
      }
    
    
      .news-section .news-point p {
        font-size: 16px;
        color: #666666;
        line-height: 1.6;
      }
    
      /* New Bullet Points Section */
      .news-section .bullet-points {
        margin-top: 30px;
      }
    
      .news-section .bullet-points h2 {
        font-size: 24px;
        color: #333;
        margin-bottom: 15px;
      }
    
      .news-section .bullet-points ul {
        list-style-type: disc;
        padding-left: 20px;
        font-size: 16px;
        color: #555;

        margin: 10px !important; 
        color: #666666 !important; 
        font-size: 16px !important;
      }
    
      .news-section .bullet-points ul li {
        margin-bottom: 10px;
        margin: 10px; 
        color: #666666; 
        font-size: 16px;
      }

     
    
      /* New Grey Italic Text Below News */
      .news-section .news-summary {
        font-size: 18px;
        color: #888;
        font-style: italic;
        margin-top: 40px;
      }
    
      /* Recent News Section */
      .recent-news-section {
        width: 100%;
        max-width: 800px;
        margin: 40px auto;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
      }
    
      .recent-news-heading {
        text-align: left;
        font-size: 24px;
        color: #333;
        margin-bottom: 20px;
      }
    
      .news-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
        margin: 0;
      }
    
      .news-card {
        width: calc(50% - 10px);
        padding: 20px;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        cursor: pointer;
        margin-bottom: 20px;
      }
    
      .news-card:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        background-color: #eaeaea;
      }
    
      .news-card .news-headline {
        text-align: left;
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-top: 20px;
        margin-bottom: 40px;
      }
    
      .news-card .news-date {
        font-size: 12px;
        color: #888;
        position: absolute;
        bottom: 10px;
        right: 10px;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 10px;
      }
    
      .news-card .calendar-icon {
        width: 16px;
        height: 16px;
        background-image: url('https://cdn-icons-png.flaticon.com/512/1828/1828506.png');
        background-size: cover;
        background-position: center;
        display: inline-block;
      }
    
      .see-all-link {
        margin-top: 20px;
        text-align: center;
      }
    
      .see-all-link a {
        color: orangered;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        padding: 10px 20px;
        border: 2px solid orangered;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
      }
    
      .see-all-link a:hover {
        background-color: orangered;
        color: #fff;
      }
    
      /* Mobile Responsiveness */
      @media (max-width: 768px) {
        .news-section {
          width: 100%;
          padding: 15px;
        }
    
        .top-row {
          flex-direction: column;
          align-items: flex-start;
        }
    
        .back-to-home {
          font-size: 12px;
          padding: 8px 16px;
        }
    
        .news-date {
          font-size: 12px;
          margin-top: 10px;
        }
    
        .news-section h1 {
          font-size: 24px;
          margin: 15px 0;
        }
    
        .news-cards {
          flex-direction: column;
          gap: 10px;
        }
    
        .news-card {
          width: 100%;
          padding: 15px;
        }
    
        .news-card .news-headline {
          font-size: 14px;
        }
    
        .news-card .news-date {
          font-size: 10px;
          position: static;
          margin-top: 10px;
          display: flex;
          justify-content: flex-start;
          gap: 8px;
        }
    
        .see-all-link a {
          font-size: 14px;
          padding: 8px 15px;
        }
    
        .news-summary {
          font-size: 16px;
          margin-top: 20px;
        }
      }
    
      /* Extra Small Mobile Devices */
      @media (max-width: 480px) {
        .back-to-home {
          font-size: 10px;
          padding: 6px 12px;
        }
    
        .news-date {
          font-size: 10px;
        }
    
        .news-section h1 {
          font-size: 20px;
        }
    
        .news-cards {
          gap: 5px;
        }
    
        .news-card {
          width: 100%;
          padding: 12px;
        }
    
        .news-card .news-headline {
          font-size: 12px;
        }
    
        .news-card .news-date {
          font-size: 9px;
        }
    
        .see-all-link a {
          font-size: 12px;
          padding: 6px 12px;
        }
    
        .news-summary {
          font-size: 14px;
        }
      }