:root {
  --orange: #8D545E; ;
  --dark: #1c1c1c;
  --white: #fff;
  --max-width: 1200px;
}
*{
  margin: 0;
  padding: 0;
    box-sizing: border-box; 

}
body {
  font-family: "Baloo 2", sans-serif;

}
html, body {
  overflow-x: hidden;
}
 


/* ---------- Topbar ---------- */
.topbar {
  background: #222;
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}
.topbar .container {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.topbar p {
  margin: 0;
  padding: 4px 8px;
}
.contact-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;      
  top: 0;                
  left: 0;
  width: 100%;           
  z-index: 1000;
}
.nav-content {
  max-width: var(--max-width);
  /* margin: auto; */
    margin:  auto ;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px  ;
}
.logo img {
  height: 60px;
}
.logo h1{
   color: var(--orange)
}
.menu {
  display: flex;
  gap: 30px;
}
.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: 0.3s;
}
.menu a:hover, .menu a.active {
  color: var(--orange);
}
.btn-contact {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* ---------- Hero ---------- */


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden; /* hide overflow during fade */
}

.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-images img.active {
  opacity: 1;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 20px;
}
.hero-content h1{
 font-size: 60px;
}


.btn-orange {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orange:hover {
  background: #d35400;
}

/* ---------------- Responsive ---------------- */

/* Tablets */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }
  .btn-orange {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .btn-orange {
    padding: 10px 22px;
    font-size: 15px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .btn-orange {
    padding: 8px 18px;
    font-size: 14px;
  }
}


/* ---------- Floating Buttons ---------- */
.floating-buttons {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  color: var(--dark);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }
  .menu {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  .menu.show {
    display: flex;
  }
  .menu a {
    padding: 14px;
    border-bottom: 1px solid #eee;
  }
  .menu-toggle {
    display: block;
    color: var(--dark);
  }
  .btn-contact {
    display: none;
  }
  .hero h1 {
    font-size: 40px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .topbar .container {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .btn-orange {
    padding: 12px 22px;
    font-size: 15px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 60px;
  }
  .btn-orange {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 48px;
  }
  .btn-orange {
    padding: 10px 22px;
    font-size: 15px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .btn-orange {
    padding: 8px 18px;
    font-size: 14px;
  }
}
/* menu toggle  */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--dark);
  cursor: pointer;
}
.menu-toggle:hover {
  color: var(--orange);
}
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: var(--orange);
  }
}

/* menu toggle*/
/*about u page*/

/* Intro Section */
.intro-section {
  
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  align-items: center;
  gap: 30px;
  padding-top: 180px;
  padding-bottom: 90px;
}



.images-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 400px;
}

.big-image img {
  width: 100%;
  border-radius: 20px;
}
.flex{
  /* margin: auto; */
  /* padding: auto; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.small-images {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
}

.diamond {
  width: 200px;
  height: 200px;
  overflow: hidden;
  transform: rotate(45deg);
  border-radius: 10px;
}

.diamond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-45deg);
}

/* Text Content */
.text-content {
  flex: 1 1 500px;
}

.subtitle {
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 40px;
}

.text-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark);
}

.text-content h2 .highlight {
  color: #8bc34a; /* green highlight */
}

.text-content p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green, #25D366);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
}

/* Call button */
.floating-buttons .call {
  background: var(--dark);
}

/* Responsive */
@media(max-width: 1024px){
  .intro-section {
    flex-direction: column;
    align-items: center;
  }

  .small-images {
    grid-template-columns: repeat(2, 80px);
    grid-template-rows: repeat(2, 80px);
    gap: 8px;
  }

  .diamond {
    width: 80px;
    height: 80px;
  }

  .text-content h2 {
    font-size: 28px;
  }

}

@media(max-width: 480px){
  .small-images {
    grid-template-columns: repeat(2, 60px);
    grid-template-rows: repeat(2, 60px);
    gap: 6px;
  }

  .diamond {
    width: 60px;
    height: 60px;
  }

  .text-content h2 {
    font-size: 24px;
  }
  .flex{
  /* margin: auto; */
  /* padding: auto; */
  
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
}
/*about u end*/
/* contACT US START  */


.contact{
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.info-section {
  padding: 100px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  /* max-width: 1400px; */
  text-align: center;
}

.info-box {
  flex: 1 1 130px;
  padding: 20px;
}

.icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f7f7f7;
  position: relative;
}

.icon i {
  font-size: 45px;
}

.clock {
  background-color: #ffeae3;
  color: #ff6b35;
  
}

.phone {
  background-color: #e7f3ff;
  color: #339cff;
}

.mail {
  background-color: #fdebf2;
  color: #ff4c91;
}

.location {
  background-color: #e8f9e6;
  color: #58b84d;
}

.info-box h3 {
  font-size: 1.3rem;
  color: #0b132b;
  margin-bottom: 8px;
}

.info-box p {
  color: #333;
  line-height: 1.5;
  font-size: 1.2rem;
}

.highlight {
  color: #ff9900;
  font-weight: 600;
}

@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    align-items: center;
  }
}

/* contACT US START  */

/* footer start  */
   .footer {
            background-color: #ffffff;
            padding-top: 64px; /* pt-16 equivalent */
         
        }
        

        .containers {
            max-width: 1350px; /* Max width for content */
            margin: 0 auto;
            padding: 0 24px; /* px-6 equivalent */
            padding-bottom: 48px; /* pb-12 equivalent */
        }

        /* --- Custom Colors (Inspired by the original design) --- */
        .color-title {
            color: #8D545E; /* Muted maroon/rose color for titles */
        }
        
        .footer-heading {
            font-size: 1.25rem; /* text-xl equivalent */
            font-weight: 600; /* font-semibold equivalent */
            border-bottom: 2px solid #559EAB; /* color-divider */
            padding-bottom: 8px;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        /* --- Grid Layout (Desktop) --- */
        .footer-content {
            display: grid;
            grid-template-columns: 1fr; /* Default single column for mobile */
            gap: 48px; /* gap-12 equivalent */
        }

        /* Tablet/Desktop: 3 columns */
        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* --- Text and List Styling --- */
        .footer-text {
            color: #4b5563; /* text-gray-700 equivalent */
            font-size: 0.95rem; /* text-sm equivalent */
            line-height: 1.6;
            font-weight: 500;
          
        }
        .footer-text p{
                      font-weight: 500;

        }
        .bp{
                      margin-bottom: 0.9rem;

        }

        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .icons {
            width: 20px;
            height: 20px;
            color: #6b7280; /* text-gray-500 */
            flex-shrink: 0;
            margin-top: 2px;
        }

        .social-icons {
            display: flex;
            gap: 16px;
        }

        .social-icons a {
            color: #6b7280;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #1f2937; /* text-gray-800 on hover */
        }

        /* --- Dog Background Section --- */
        .dog-bg-section {
            
           
            background-size: contain; 
            background-position: center bottom; /* Ensures the dog is visible */
            /* background-repeat: no-repeat; */
            width: 100%;
            
            margin-top: 40px;

            /* Flex to center the text overlay */
            display: flex;
            align-items: center;
            justify-content: center;
        }

    
        @media (min-width: 640px) {
            .dog-bg-section {
                height: 256px; /
            }
        }
        
        .ctaa-overlay {
            background-color: rgba(0, 0, 0, 0.4); /* Black with 40% opacity */
            padding: 16px;
            border-radius: 8px;
        }

        .ctaa-text {
            color: white;
            text-align: center;
            font-size: 1.25rem; 
            font-weight: 700; 
            letter-spacing: 0.05em; 
        }

        @media (min-width: 640px) {
            .cta-text {
                font-size: 1.5rem; /* sm:text-2xl */
            }
        }
/* footer end  */