

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Background Color
  2.3 Section
    - Section Paddings
    - Section Margins
    - Section Title
  2.4 Buttons
    - Primary Buttons
    - Button Hover Effect

3. CONTENT ELEMENTS
  - Dropdown
  - Breadcrumb
  - Pagination
  - Accordion
  - Form
  - Swiper
  - Modal Video

4. SITE STRUCTURE
  4.1 Header
  4.2 Brand Section
  4.3 About Section
  4.4 Services Section
  4.5 Project Section
  4.6 CTA Section

5. PAGES STYLE
  5.1 Projects Page
  5.2 Pricing page 
  5.3 Reviews page
    

  
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
:root {
  --primary-color: #F2B821;
  --secondary-color: #05213C;
  --black-color: #292929;
  --light-black-color: #343536;
  --dark-color: #313131;
  --body-color: #5A5A5A;
  --gray-color: #777F81;
  --light-color: #fdfdfd;

  /* Bootstrap Theme Color  */
  --bs-gray-100: #F6F6F6;
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--primary-color);
  --bs-body-color-rgb: 90, 90, 90;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-dark-rgb: 41, 41, 41;
  --bs-primary-rgb: 178, 142, 113;
}

/* Fonts */
:root {
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--light-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--body-color);
  margin: 0;
}

p {
  color: var(--body-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--primary-color);
}

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}


/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 8em;
  padding-bottom: 8em;
}

.padding-medium {
  padding-top: 10em;
  padding-bottom: 10em;
}

.padding-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

@media only screen and (max-width: 990px) {
  .padding-small {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.84px;
  line-height: 115%;
}

h6 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

/* - Content width
--------------------------------------------------------------*/
.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/

.btn {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
}

/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
  --bs-btn-color: var(--light-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--light-color);
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--light-color);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

/* - Button Hover Effect
--------------------------------------------------------------*/
.btn-slide.btn-bg {
  background-color: var(--light-color);
}

.btn-slide {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
}

.btn-slide.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 3%;
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.btn-slide span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  font-weight: 600;
}

.btn-slide.hover-slide-right:hover::before {
  width: 100%;
}

.btn-slide.hover-slide-right:hover span {
  color: var(--light-color);
}

/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

.dropdown-toggle::after {
  border: none;
  margin-left: 0em;
  vertical-align: 0em;
}


/* Breadcrumb
------------------------------------------------------------- */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
  position: relative;
}


/* Pagination
------------------------------------------------------------- */
.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}


/* Accordion
------------------------------------------------------------- */
.accordion {
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}


/* Form
------------------------------------------------------------- */
.form-control:focus {
  border: 1px solid #acacac;
  box-shadow: none;
}


/* Swiper
------------------------------------------------------------- */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--dark-color);
}


/* Modal Video
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}



/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/
a.nav-link {
  text-transform: capitalize;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
  transition: all 0.3s ease-in-out;
}

a.nav-link::after {
  content: "";
  text-align: center;
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.9s;
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
  width: 100%;
  transition: width 0.9s;
}

#primary-header .dropdown .search::after {
  content: none;
}

#primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}

#primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}

#primary-header .search-dropdown .dropdown-menu button {
  padding: 0 10px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}
/* .header-top{
  height: 100px;
} */
 #header{
  padding: 5px 20px;
  height: 210px;
 }
 
@media only screen and (max-width: 990px) {
  a.nav-link {
    font-size: 1.5rem;
  }

  a.nav-link.active::after,
  a.nav-link:focus::after,
  a.nav-link:hover::after {
    width: 0%;
  }

  a.nav-link.active,
  a.nav-link:focus,
  a.nav-link:hover {
    color: var(--primary-color) !important;
  }
}


/* 4.2 Brand Section
/*----------------------------------------------*/
img.brand-image {
  filter: contrast(0);
  transition: all 0.3s ease-in;
}

img.brand-image:hover {
  filter: contrast(1);
}


/* 4.3 About Section 
/*----------------------------------------------*/
svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1.1);
  }
}



/* 4.4 Services Section
/*----------------------------------------------*/
/* Jarallax */
.jarallax {
  min-height: 350px;
  transition: all 0.5s ease-in-out;
  
}

.service-block {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .jarallax {
  opacity: 0;
}

.service-btn {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .service-btn {
  color: var(--dark-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


/* 4.5 Project Section
/*----------------------------------------------*/
.swiper-slide.swiper-width {
  width: auto !important;
}

.project-content .portfolio-img {
  transition: all 0.5s ease-in-out;
}

.project-content:hover .portfolio-img {
  opacity: 0.3;
}

.portfolio-description {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.project-content:hover .portfolio-description {
  opacity: 1;
}



/* 4.6 CTA Section
/*----------------------------------------------*/
.border-dotted {
  border: 2px dashed rgba(255, 255, 255, 0.5);
}






/*----------------------------------------------*/
/* 5 PAGES STYLE */
/*----------------------------------------------*/


/* 5.1 Projects Page
/*----------------------------------------------*/

button.filter-button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}

button.filter-button.active,
button.filter-button:hover {
  color: var(--bs-light);
  background: var(--primary-color);
}


/*--------------------------------------------------------------
 5.2 Pricing page 
  --------------------------------------------------------------*/
.plan-post {
  border: 1px solid var(--secondary-color);
}

span.price-tick {
  color: var(--primary-color);
}

.price-option {
  height: 300px;
}


/*--------------------------------------------------------------
 5.3 Reviews page
--------------------------------------------------------------*/

.reviews-components {
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}




.rate {
  color: var(--primary-color);
}


/* .navbar{
  position: fixed;
  top: 0;
  z-index: 999;
}
section{
  z-index: 1;
} */
.logo{
  width: 250px;
  height: 100%;
}

.name{
  font-size: xx-large; font-weight: bolder; color: #05213C;
}

@media screen and (max-width: 575px) {
  .list{
    font-size: x-small;
    position: absolute;
    top: 20px;
   right: 5px;
  }
  .name{
    margin-top: 20px;
    font-size:x-large;
    margin: auto;
  }
}

.vinayagar{
  width: 600px;
  height: 500px;
}

.back-to-top {
    position: fixed;
    /* display: none; */
    background: #fdbe33;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
    padding: 10px;
}

.back-to-top:hover {
    color: #fdbe33;
    background: #05213C;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
}

/****************************************************/
/********* WhatsApp Toggle Button Style *************/
/****************************************************/

 /* WhatsApp Toggle Button Style */
  .whatsapp-toggle {
    position: fixed;
    bottom: 85px;
    right: 10px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .whatsapp-toggle:hover {
    color: #fdbe33;
    background: #05213C;
    transform: scale(1.1);
  }

  .whatsapp-toggle i {
    line-height: 50px;
  }

.vinayagar{
  animation-name: vinayagar;
  animation-duration: 5s;
  animation-iteration-count: 1;
}
@keyframes vinayagar{
  0%{
    transform: translatex(500px);
  }
  100%{
    transform: translatex(-0px);
  }
}

@media screen and (max-width: 575px) {
  .vinayagar{
    height: 400px;
    width: 100%;
    margin-bottom: 20%;
  }
}


 /* FOOTER STYLE */
  .footer {
    /* height: 600px; */
    background: linear-gradient(135deg, #05213C);
    color: #fff;
    padding: 70px 10% 30px;
    position: relative;
    overflow: hidden;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230,126,34,0.12) 0%, transparent 70%);
    animation: pulse 6s infinite ease-in-out;
  }

  .footer-container {
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 90px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
  }

  .footer-info {
    flex: 1;
    min-width: 250px;
    /* margin-bottom: 30px; */
    
  }

  .footer-logo {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 10px;
    animation: slideInDown 1s ease-out;
  }

  .footer-tagline {
    color: #ccc;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 25px;
  }

  .contact-details{
    margin-top: 70px;
  }

  .contact-details p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 10px;
    /* margin-top: 10px; */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .contact-details p i {
    color: #e67e22;
    transition: transform 0.3s ease;
  }

  .contact-details p:hover {
    color: #e67e22;
    transform: translateX(5px);
  }

  .contact-details p:hover i {
    transform: scale(1.2);
  }

  .social-section {
    flex: 1;
    min-width: 250px;
    text-align: center;
    animation: fadeInUp 1.2s ease;
  }

  .social-section h3 {
    margin-bottom: 20px;
    color: #e67e22;
    margin-top: 10%;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .social-link {
    color: #fff;
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: #333;
    display: inline-block;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  }

  .social-link:hover {
    transform: translateY(-6px) scale(1.1);
    background: #e67e22;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.5);
  }

  .footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding-top: 20px;
    margin-top: 5%;
    color: white;
    /* font-size: 0.9rem; */
    /* letter-spacing: 0.5px; */
    animation: fadeIn 2s ease;
  }

  .links{
    margin-top: 5%;
  }
  /* .footer-services{
    height: 300px;
    padding-top: 10px;
    padding-left: 50px;
  } */
  .footer-services h3{
    margin-bottom: 20px;
    color: #e67e22;
    margin-top: 35%;
  }
  .footer-services{
    margin-bottom: 20%;
  }
  .service-link{
    color: white;
  }
  

  
  /* ANIMATIONS */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes slideInDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.9; }
  }

  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      gap: 0px;
      /* display: block; */
    }
    .contact-details p {
      justify-content: center;
    }
    .footer-logo{
      font-size: x-large;
      
    }
    .social-section{
      position: relative;
      bottom: 3%;
    }
   
  }

  @media screen and (max-width:575px){
     .footer-container{
      display: block;
      height: 130vh;
     }
     .footer-services{
      position: relative;
      bottom: 5%;
      /* top: 1%; */
      margin-bottom: 0%;
     }
     .links{
      position: relative;
      bottom: 10%;
      margin-bottom: 40px;
      
     }
     .footer-bottom{
      margin-top: 0;
      margin-bottom: 20px;
      width: 100%;
     }
  }




   /* SECTION STYLES */
    section.projects {
      padding: 80px 10%;
      background: #fff8f1;
      text-align: center;
      position: relative;
    }

    .projects h2 {
      font-size: 2.8rem;
      color: #e67e22;
      margin-bottom: 10px;
      animation: fadeInDown 1s ease;
    }

    .projects p {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 50px;
      animation: fadeInUp 1.2s ease;
    }

    /* PROJECT GRID */
    .project-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .project-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 300px;
      
      opacity: 0;
      transform: translateY(40px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
   

    .project-card.visible {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.6s ease-out;
      box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .project-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .project-card:hover img {
      transform: scale(1.1);
    }

    .project-content {
      padding: 20px;
    }

    .project-content h3 {
      color: #e67e22;
      margin-bottom: 10px;
      font-size: 1.3rem;
    }

    .project-content p {
      color: #555;
      font-size: 1rem;
    }

    /* ANIMATIONS */
    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
      .project-grid {
        flex-direction: column;
        align-items: center;
      }
    }



    /* ABOUT SECTION */

    section.about {
      padding: 100px 10%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 50px;
    }

    .about-img {
      flex: 1;
      min-width: 320px;
      animation: slideInLeft 1s ease-out;
    }

    .about-img img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .about-text {
      flex: 1;
      min-width: 320px;
      animation: slideInRight 1s ease-out;
    }

    .about-text h2 {
      color: #e67e22;
      font-size: 2.5rem;
      margin-bottom: 20px;
      animation: fadeInDown 1s ease;
    }

    .about-text p {
      color: #555;
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .about-text strong {
      color: #e67e22;
    }

    /* COUNTERS SECTION */
    .counters {
      background: #fff3e4;
      padding: 80px 10%;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      text-align: center;
      gap: 40px;
      position: relative;
      overflow: hidden;
      margin-bottom: 10%;
    }

    .counter-box {
      flex: 1;
      min-width: 200px;
      animation: fadeInUp 1.5s ease;
    }

    .counter-number {
      font-size: 3rem;
      color: #e67e22;
      font-weight: 600;
    }

    .counter-text {
      font-size: 1.1rem;
      color: #333;
      margin-top: 10px;
      font-weight: 500;
    }
    .counters:hover{
      background-color: #05213c8f;
      color: #e67e22;
    }

    /* ANIMATIONS */
    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInLeft {
      0% { opacity: 0; transform: translateX(-60px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      0% { opacity: 0; transform: translateX(60px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      section.about {
        flex-direction: column;
        text-align: center;
      }

      .counters {
        flex-direction: column;
      }
    }


    .about-img{
      animation-name: about-img;
      animation-duration: 1.5s;
      animation-iteration-count: 1;
      
    }
    @keyframes about-img{
      from{
        transform: translatex(-300px);
      }
      to{
        transform: translatex(0px);
      }
    }



    /* About page CSS */

       h2 {
      text-align: center;
      color: #e67e22;
      font-size: 2.5rem;
      margin-top: 60px;
      animation: fadeInDown 1s ease;
    }

    section.contact {
      padding: 80px 10%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 50px;
    }

    .contact-info, .contact-form {
      flex: 1;
      min-width: 320px;
      padding: 20px;
      background: #fff3e4;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      animation: fadeInUp 1.2s ease;
    }

    /* Contact Info */

    
    .contact-info h3 {
      color: #e67e22;
      margin-bottom: 20px;
    }

    .contact-info p {
      margin-bottom: 15px;
      font-size: 1rem;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }

    .social-icons-1  {
      color: #fff;
      text-decoration: none;
      background: #e67e22;
      padding: 10px 12px;
      border-radius: 50%;
      display: inline-block;
      transition: transform 0.3s, background 0.3s;
    }

    .social-icons-1 :hover {
      transform: scale(1.2);
      background: #d35400;
    }

    /* Contact Form */
    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-form input, .contact-form textarea {
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 1rem;
      resize: none;
      transition: border 0.3s, box-shadow 0.3s;
    }

    .contact-form input:focus, .contact-form textarea:focus {
      border-color: #e67e22;
      box-shadow: 0 0 8px rgba(230, 126, 34, 0.3);
      outline: none;
    }

    .contact-form button {
      padding: 12px;
      background: #e67e22;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .contact-form button:hover {
      background: #d35400;
      transform: scale(1.05);
    }
     .con-head-logo{
      width: 100%;
      
     }
    .contact-logo{
      margin-top: 20px;
     
      width: 100%;
      height: 300px;

    }
    .contact-logo:hover{
      box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    }

    @media screen and (max-width:768px){
      /* .contact-logo{
        width: 300px;
      } */
      .contact-info{
      flex-direction: column;
      gap: 50px;
    }
    /* .con-head-logo{
      width: 400px;
    } */
    }

    /* ANIMATIONS */
    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      section.contact {
        flex-direction: column;
        align-items: center;
      }
      .logo{
        width: 150px;
      }
    }


     header {
        padding: 40px 20px;
        text-align: center;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    h1 {
        margin: 0;
        font-size: 2.5rem;
        color: #333;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding: 30px;
        margin-bottom: 10%;
        margin-top: 5%;
    }

    .gallery img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        margin-top: 5%;
    }
    
    @media screen and (max-width:575px){
      .gallery img {
        height: 410px;
        /*object-fit: cover;*/
      }
    }
    
     @media screen and (min-width: 575px) and (max-width: 768px){
      .gallery img {
        height: 410px;
        object-fit: cover;
      }
    }

   
    
    .show {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Hover Animation */
    .gallery img:hover {
        transform: scale(3.05);
        transition: transform 0.3s ease;
         box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }

    /* Lightbox */
    #lightbox {
        position: fixed;
        top: 0; left: 0; 
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    #lightbox img {
        max-width: 90%;
        max-height: 80%;
        border-radius: 10px;
    }





    