/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/
/*-----------------------------------*\
 * custome property
\*-----------------------------------*/

:root{

    /**
     colors
    **/
    --united-nations-blue: hsl(214, 56%, 58%);
    --bright-navy-blue: hsl(214, 57%, 51%);
    --yale-blue: hsl(214, 72%, 33%);
    --blue-ncs: hsl(197, 100%, 36%);
    --gunmetal: hsl(206, 34%, 20%);
    --gainsboro: hsl(0, 0%, 88%);
    --white: #ffffff;
    --black: #000;
    --onyx: hsl(0, 0%, 25%);
    --jet: hsl(0, 0%, 20%);
    --crimson: #DC143C;

    /**
     typography styles for the theme colors *
    **/

    --ff-poppins: "Poppins", sans-serif;
    --ff-montserrat: "Montserrat", sans-serif;

    --fs-1: calc(20px + 3.5vw);
    --fs-2: calc(18px + 1.6vw);
    --fs-3: calc(16px + 0.45vw);
    --fs-4: 15px;
    --fs-5: 14px;
    --fs-6: 13px;
    --fs-7: 12px;
    --fs-8: 11px;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /**
        - transition: all linear infinite 
    ?*/

    --transition: 0.25s ease-in-out;

    /**
        - spacing 
    ?*/
    --section-padding: 60px;

     /**
        - border radius 
    ?*/
    --radius-15: 15px;
    --radius-25: 25px;
}

*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a{
    text-decoration: none;
}

a,
img,
span,
input,
label,
button,
ion-icon {
    display: block;
}

input,
button{
    background: none;
    border: none;
    font: inherit;
}

button{
    cursor: pointer;
}

input{
    width: 100%;
}

ion-icon{
    pointer-events: none;
}

html{
    font-family: var(--ff-poppins);
    scroll-behavior: smooth;
}

body{
    background: white;
}


/*-----------------------------------*\
styling
\*-----------------------------------*/                                             

.container{
    padding-inline: 10px;
}

.btn{
    color: var(--white);
    border-color: antiquewhite;
    text-transform: uppercase;
    font-size: var(--fs-5);
    height: 40px;
    width: 130px;
    border-radius: 25px;
    padding: 0;
    border-width: 2px solid transparent;
    transition: var(--transition);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.btn a{
    color: white;
}

.btn-primary{
    background: blue;
    border-color: blue;
}

.btn-primary:is(:hover, :focus){
    background: rgb(0, 215, 0);
    border-color: #23242a;
}

.btn-secondary{
    background: red;
    border-color: maroon;
}

.btn-secondary:is(:hover, :focus)
{
    background: rgb(60, 255, 0);
}

.h1,
.h2,
.h3 {
    font-weight: var(--fw-800);
    font-family: var(--ff-montserrat);
    text-transform: uppercase;
    color: white;
}

.h1 {
    color: white;
    font-size: var(--fs-1);
}

.h2,
.h3 {
    color: var(--gunmetal);
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-3);
    font-weight: var(--fw-500);
}



.section-subtitle {
    color: #696969;
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    margin-bottom: 5px;
}

.section-title {
    margin-bottom: 10px;
}

.section-text {
    color: black;
    margin-bottom: 20px;
}



.card-text {
    color: black;
    font-size: var(--fs-5);
    font-family: var(--ff-montserrat);
}


/*-----------------------------------*\
 * #header.css
\*-----------------------------------*/                                             

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding-top: 61px;
    z-index: 4;
}

.header-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
    padding-block: 15px;
    z-index: 1;
}

.header-active .header-top {
    position: fixed;
    background: lightslategrey;
}

.header-top .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: flex-start;
    align-items: center;
}

.helpline-box .wrapper {
    display: none;
}

.helpline-box .icon-box {
    font-size: 25px;
    background: blue;
    padding: 6px;
    border-radius: 30%;
    color: white;
}

.helpline-box .icon-box ion-icon {
    --ionicon-stroke-width: 50px;
}

.header-top .logo {
    margin-inline: auto;
}

.header-top .logo img {
    max-width: 200px;
}

.header-btn-group {
    justify-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.search-btn,
.nav-open-btn {
    font-size: 35px;
    color: inherit;
}

.search-btn {
    font-size: 35px;
}

.header-bottom {
    padding-top: 2px;
}

.header-bottom .container {
    display: flex;
    border-bottom: #23242a;
    justify-content: space-between;
    align-items: center;
    padding-block: 15px;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-link {
    color: white;
    padding: 8px;
    border: 1px solid hsla(0, 0%, 100%, 0.3);
    border-radius: 50%;
    font-size: 25px;
    transition: var(--transition);
}

.social-link:is(:hover, :focus) {
    background: rgb(60, 255, 0);
}

.header .btn {
    padding: 4px;
}

.header .navbar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 100%;
    max-width: 280px;
    font-size: 0.8em;
    height: 100%;
    background: white;
    visibility: hidden;
    pointer-events: none;
    transition: 0.01s ease-in;
    z-index: 3;
}

.navbar.active {
    background-color: #181818;
    right: 0;
    visibility: visible;
    pointer-events: all;
    transition: 0.2s ease-out;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.navbar-top .logo img {
    width: 200px;
}

.nav-close-btn {
    font-size: 25px;
    color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon {
    --ionicon-stroke-width: 80px;
}

.navbar-list {
    border-top: 1px solid #323338;
}

.navbar-list li {
    border-bottom: 1px solid #323338;
}

.navbar-link {
    padding: 15px 20px;
    color: white;
    font-weight: 500;
    font-size: 1.0em;
    transition: var(--transition);
    text-transform: capitalize;
}

.navbar-link:is(:hover, :focus) {
    color: crimson;
}

.overlay {
    position: fixed;
    inset: 0;
    background: #23242a;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition);
}

.overlay.active {
    opacity: 0.6;
    pointer-events: all;

}

.review {
    align-items: center;
}

.heading {
    align-items: center;
    display: flex;
    padding: 2.5rem;
}

.heading span {
    letter-spacing: normal;
    font-size: 1.5em;
    align-items: var(--section-padding);
    color: orange;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 1rem;
}

/* Dropdown Menu Styles */
.header-bottom .dropdown {
    position: relative;
    display: inline-block;
}

.header-bottom .dropdown-content {
    border-radius: 8px;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.header-bottom .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.header-bottom .dropdown-content a:hover {
    background-color: #cbcbcb;
    border-radius: 8px;
}

.header-bottom .dropdown:hover .dropdown-content {
    display: block;
}

.header-bottom .dropdown:hover .dropbtn {
    background-color: #3e8e41;
}



/*-----------------------------------*\
 * #hero.css
\*-----------------------------------*/

.hero {
    background: url('../Packages/IntHeroSectionImages/AboutUs/hero-about.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: hsla(0, 0%, 0%, 0.7);
    background-blend-mode: overlay;
    display: grid;
    place-items: center;
    text-align: center;
    padding-top: 125px;
    max-height: 500px;
}

.hero-title {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.hero-text{
    color: white;
    font-size: 1.3em;
    margin-bottom: 40px;
}

.btn-group{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/*-----------------------------------*\
  About Arunndhati World
\*-----------------------------------*/

#company-history {
    padding: 2rem;
    background-image: url('../Packages/IntHeroSectionImages/AboutUs/bg.jpg');
    margin: 1rem auto;
    max-width: 1150px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.639);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    text-align: justify;
}

#company-history:hover {
    transform: translateY(-5px);
}

#company-history h2 {
    color: #333;
    border-bottom: 2px solid #696464;
    padding-bottom: 0.5rem;
    text-align: center;
}

#company-history p {
    margin-top: 10px;

}

/*-----------------------------------*\
  Director section 1
\*-----------------------------------*/

.director{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: Arial, sans-serif;
    margin-top: 25px;
    margin-bottom: 30px;
}

.director-container {
    /* background-image: url('../Packages/IntHeroSectionImages/AboutUs/bg.jpg'); */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid #939393;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.639);
    transition: transform 0.3s ease-in-out;
}

.director-container:hover {
    transform: translateY(-5px);
}

.director-image {
    max-width: 250px;
    height: auto;
    border-radius: 5%;
    margin-right: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.639);
}

.director-info {
    text-align: left;
    color:#23242a;
}

/*-----------------------------------*\
  Document section
\*-----------------------------------*/

.document-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.document-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    align-self: center;
}

.document-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.document-box img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid #ddd;
}

.document-info {
    padding: 15px;
    background-color: #fff;
    text-align: center;
    transition: background-color 0.3s ease;
}

.document-box:hover .document-info {
    background-color: #f7f7f7;
}

.document-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.document-description {
    font-size: 1em;
    color: #555;
}


/*-----------------------------------*\
  about section
\*-----------------------------------*/

.branches {
    max-width: 93%;
    margin-left: 15px;
    border-bottom: 1px solid #23242a;
    border-top: 1px solid #23242a;
    padding-top: 20px;
    padding-bottom: 25px;
    background-color: #23242a;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
    margin-top: 50px;
    text-align: center;
    text-align: justify;
}

.branches .section-title {
    color: white;
    text-align: center;
    font-size: 1.8em;
    max-width: 100%;
}


.branches .section-text {
    color: white;
    display: contents;
    line-height: 1.2em;
    text-align: center;
    font-size: 1em;
    max-width: 80%;
    
}

.container-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.branch-box {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.branch-box h2 {
    margin: 0 0 10px;
    color: #333;
}

.branch-box p {
    margin: 0;
    color: #666;
}
.branch-box:hover {
    background-color: #e0e0e0; /* Lighter background color on hover */
    border-color: #bbb; /* Darker border color on hover */
    transform: scale(1.05); /* Slightly enlarge the box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}

/*Gallery section*/
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.image {
    width: calc(25% - 20px);
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image:hover {
    transform: scale(1.05);
}

.image img {
    width: 100%;
    height: auto;
    display: block;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

/* company overview */

#company-overview {
    padding: 2rem;
    background-image: url('../Packages/IntHeroSectionImages/AboutUs/bg.jpg');
    margin: 1rem auto;
    max-width: 90%;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.639);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    text-align: justify;
}

#company-overview:hover {
    transform: translateY(-5px);
}

#company-overview h2 {
    color: #333;
    border-bottom: 2px solid #696464;
    padding-bottom: 0.5rem;
    text-align: center;
}

#company-overview p {
    margin-top: 10px;
}

/* staff section */

.staff {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    margin-bottom: 20px;
}

.section-heading {
    margin: 20px 0;
    text-align: center;
    font-size: 2em;
    color: #333;
    text-decoration: underline;
}

.employee-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.employee-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.employee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.employee-image {
    width: 100%;
    height: auto;
}

.employee-info {
    padding: 20px;
}


/* teams */
.container-team {
    width: 90%;
    margin: 20px auto;
    text-align: center;
}

.container-team h1 {
    color: #333;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.6);
    margin: 10px;
    padding: 20px;
    flex: 1 1 calc(45% - 20px);
    max-width: calc(45% - 20px);
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 px 8px rgba(0, 0, 0, 0.4);
}

.team-member h2 {
    color: #333;
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
    font-size: 14px;
}


/* official page link */
/* Button container */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated button */
.animated-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background-color: #0c6291;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.animated-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7e1946;
    border-radius: 5px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

/* Hover animation */
.animated-button:hover {
    color: #fff;
    background-color: #0c6291;
}

.animated-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile view responsiveness */
@media screen and (max-width: 600px) {
    .animated-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* youtube video section */
.youtube {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #f0f0f0;
}

.youtube .video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.youtube .video-gallery .video-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.youtube .video-gallery .video-box:hover {
    transform: scale(1.05);
}

.youtube .video-gallery .video-box iframe {
    width: 100%;
    height: 200px;
    border: none;
    display: block;
}

.youtube .video-gallery .video-box .video-info {
    padding: 10px 0;
    text-align: center;
}

.youtube .video-gallery .video-box .video-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.youtube .video-gallery .video-box .video-description {
    font-size: 1em;
    color: #555;
}

/*map section*/


.map-container {
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/*-----------------------------------*\
  Footer
\*-----------------------------------*/

.footer-top {
    padding-block: var(--section-padding);
    background: #eaece5;
    color: #23242a;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand img {
    width: 200px;
}

.footer-brand .logo {
    margin-bottom: 23px;
}

.footer-text {
    font-size: 1.1em;
    line-height: 1.5;
}

.footer-contact {
    margin-bottom: 30px;
}

.contact-title {
    position: relative;
    font-family: var(--ff-montserrat);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 92px;
    height: 2px;
    background: #23242a;
}

.contact-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    max-width: 180px;
}

.contact-item {
    font: 1em;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.contact-item ion-icon {
    stroke-width: 50px !important;
}

.contact-link,
address {
    font-style: var(--ff-montserrat);
    color: #0040ff;
    font-size: 1.2em;
}

.contact-link:is(:hover, :focus) {
    color: crimson;
}

.form-text {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.footer-form .input-field {
    color: white;
    background: #23242a;
    font-size: 1.2em;
    padding: 17px 23px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.footer-form .btn {
    width: 100%;
    font-size: 1.1em;
    font-weight: 350;
    margin-top: 10px;
}

.footer-bottom {
    background: #dadbd7;
    padding-block: 25px;
    text-align: center;
    font-size: 0.8em;
}

.copyright {
    color: #23242a;
    font-size: 1.2em;
    margin-top: 8px;
    margin-bottom: 8px;
}

.copyright a {
    color: #23242a;
    display: block;
}

.copyright a:is(:hover, :focus) {
    color: crimson;
}

.footer-top .form-wrapper .input-field::placeholder {
    color: white;
}

.footer-bottom-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-bottom-list>li {
    font-size: 1em;
    Position: relative;
}

.footer-bottom-list>li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -7px;
    bottom: 4px;
    width: 1px;
    background: #23242a;
}

.footer-bottom-link {
    color: #0040ff;
    font-size: 1em;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) {
    color: crimson;
}

/*-----------------------------------*\
  Top Fetching Button
\*-----------------------------------*/

.top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: red;
    color: antiquewhite;
    display: grid;
    place-items: center;
    font-size: 1rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: 0 0.8px 2.99px hsla(0, 0%, 0%, 0.2);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}


.top.active {
    opacity: 0.999;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    visibility: visible;
}

.top:is(:hover, :focus) {
    color: #23242a;
}



/*-----------------------------------*\
  top queries
\*-----------------------------------*/

@media (min-width: 350px){

    .hero {
        min-height: 500px;
        padding-top: 85px;
    }

    .hero-title{
        font-size: 2em;
    }

    .hero-text {
        --fs-5:12px;
    }
}
/* for 580px */
@media (min-width: 580px) {
    .container{
        max-width: 580px;
        margin-inline: auto;
    }
        .btn {
            --fs-5: 16px;
        }
    
        section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
            text-align: center;
        }
    
        .section-text {
            margin-bottom: 40px;
        }
    
        .card-text {
            --fs-5: 15px;
        }
    
        .header {
            padding-top: 80px;
        }
        .helpline-box .icon-box {
            padding: 15px;
        }
        .header-top .logo {
            max-width: unset;
        }
        .search-btn {
            font-size: 32px;
        }
        .nav-open-btn {
            font-size: 42px;
        }
        .header .btn {
            --fs-5: 15px;
        }
        .hero {
            min-height: 500px;
            padding-top: 85px;
        }
        .hero-title{
            font-size: 2em;
        }
        .hero-text {
            --fs-5:12px;
        }
        .btn-group {
            gap: 20px;
        }
        /* footer section */

        .footer .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .footer-form {
            grid-column: span 2;
        }
        .footer-bottom {
            text-align: center;
        }
        .copyright {
            margin-bottom: 0;
        }
        .footer-bottom-list {
            justify-content: flex-end;
        }

}
/* for 768px */
@media (min-width: 768px){

    :root {
        --fs-5: 15px;
    }
    
    .container {
        max-width: 800px;
    }

    .section-text {
        max-width: 60ch;
        margin-inline: auto;
    }

    /* header section */
    .helpline-box {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
    }

    .helpline-box .wrapper {
        display: block;
        color: white;
        font-size: var(--fs-6);
    }

    .social-list {
        gap: 12px;
    }
    
    .popular {
        padding: 1rem;
    }

    #company-history {
        padding: 1rem;
    }

    #company-overview {
        padding: 1rem;
    }

    /*youtube video*/
    .video-section {
        padding: 1rem;
    }
    
    /* footer section */

    .form-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
    }

    .footer-form .input-field {
        margin-bottom: 0;
    }

    .footer-form .btn {
        margin-bottom: 8px;
        width: 400px;
        height: 60px;
    }

}
/* for 995px */
@media (min-width: 995px) {
    .container {
        max-width: 98%;
    }

    .header.active .header-top {
        position: unset;
        background: unset;
    }

    .nav-open-btn,
    .navbar-top {
        display: none;
    }

    .header-bottom {
        border-bottom: none;
    }

    .header.active .header-bottom {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        color: #ffffff;
        box-shadow: hsla(0, 0%, 0%, 0.08);
        transition: var(--transition);
        -webkit-transition: var(--transition);
        -moz-transition: var(--transition);
        -ms-transition: var(--transition);
        -o-transition: var(--transition);
    }

    .header-bottom .container {
        padding-block: 0;
    }

    .header .navbar {
        all: unset;
    }

    .navbar-list {
        border-top: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-list li {
        border-bottom: none;
    }

    .navbar-link {
        color: whitesmoke;
        --fs-4: 15px;
        font-weight: unset;
        text-transform: uppercase;
        padding: 25px 19px;
    }

    .header.active .navbar-link {
        color: #23242a;
    }

    .header.active .navbar-link.top:is(:hover, :focus) {
        color: #DC143C;
    }

    .header.active .social-link {
        color: #23242a;
        border-color: hsl(206, 34%, 20%);
    }

    .overlay {
        display: none;
    }

    /* hero section */

    .hero .container{
        max-width: 740px;
    }

    /* footer section */

    .footer-top .container 
    {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 50px;
    }

    .footer-form {
        grid-column: unset;
    }

    .form-wrapper{
        flex-direction: column;
    }

    .footer-form .btn {
        margin-top: 0;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .document-gallery {
        grid-template-columns: 1fr; /* Single column layout on small screens */
        padding: 10px;
    }

    .document-box img {
        height: auto; /* Ensure image height is adjusted properly */
    }

    .document-title {
        font-size: 1em; /* Adjust font size for smaller screens */
    }

    .document-description {
        font-size: 0.9em; /* Adjust font size for smaller screens */
    }

    .document-info {
        padding: 10px; /* Adjust padding for smaller screens */
    }
    .youtube .video-gallery {
        grid-template-columns: 1fr; /* Single column layout on small screens */
        padding: 10px;
    }

    .youtube .video-gallery .video-box iframe {
        height: 150px; /* Reduce height of the iframe */
    }

    .youtube .video-gallery .video-box .video-title {
        font-size: 1em; /* Adjust font size for smaller screens */
    }

    .youtube .video-gallery .video-box .video-description {
        font-size: 0.9em; /* Adjust font size for smaller screens */
    }
    .director-container {
        flex-direction: column;
        align-items: center;
    }
    .director-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .director-info {
        text-align: center;
    }
    .employee-container {
        flex-direction: column;
        align-items: center;
    }
    .employee-card {
        max-width: 90%;
    }
    .team-member {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .branch-box {
        width: 90%;
    }
}