* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --primary-color: #ff9900; */
  --primary-color: #094065;
  --primary-bg-color: #f1f1f1;
  /* --secondary-color: #ff9900; */
  --dark-light-color: #5c5c5c;
  --text-primary: #fff;
  --text-secondary: #000;
  --dark-bg: #1a1a1a;
  --card-bg: #242424;
  --text-primary: #ffffff;
  --text-secondary: #000000;
  --accent-color: #FF9900; /* Orange color for Read More links */
  --card-background: #f8f8f8;
  --border-radius: 12px;
  --transition-speed: 0.3s;
  --text-primary: #f8f8f8;
  --text-secondary: #333333;
  --accent-color: #ff9900;
  --heading-color: #1a1a1a;
  --paragraph-color: #666666;
  --circle-bg: #ff9900;
  --spacing-unit: 1rem;
}

body {
  background-image: url("../assets/images/project_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  height: 100vh;
  width: 100%;
  backdrop-filter: brightness(0.8);
}

/* Navbar Starts  */

/* Responsive Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  background-image: url('../assets/images/foil.png');
  color: var(--text-primary);
  height: 8rem;

  border-bottom: 1px solid grey;
  /* position: fixed; */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  max-height: 120px;
  width: 140px;
  position: relative;
  top: 12px;
}

.menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 48px;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  text-decoration: none;
  /* color: var(--text-primary); */
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: var(--text-primary);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

/* Navbar Ends */

.project-hero {
  display: flex;
  background-color: transparent;
  background-image: linear-gradient(270deg, #ffffff00 0.02%, #1e1e1ebf 100%);
  justify-content: flex-start;
  align-items: center;
  padding-left: 160px;
  height: 60vh;
  width: 100%;
  padding-bottom: 6rem;
  color: var(--text-primary);
}

.project-hero .main-heading h1 {
  font-size: 4rem;
  font-weight: 100;
  padding-top: 6rem;
  font-family: "Manrope", sans-serif;
}

/* Our blog starts */


.our-blog {
  display: flex;
  background-color: var(--text-primary);
  justify-content: center;
  align-items: center;
  padding: 0px 160px;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: var(--text-secondary);
}

.blog-main-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

.blog-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.blog-image {
    border-radius: 60px;
    width: 100%;
    margin-bottom: 2.5rem;
}

.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 60px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: block;
}

.blog-text {
  width: 100%;
}

.blog-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--paragraph-color);
  margin-bottom: 2rem;
}

.blog-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.blog-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-icon {
  padding-top: 0.5rem;
}

.icon-circle {
  width: 10px;
  height: 10px;
  background-color: var(--circle-bg);
  border-radius: 50%;
}

.point-content {
  flex: 1;
}

.point-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--paragraph-color);
  margin: 0;
}

.point-content strong {
  color: var(--heading-color);
  font-weight: 600;
}

.blog-footer {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--paragraph-color);
}

.blog-footer strong {
  color: var(--heading-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .our-blog {
    padding: 4rem 80px;
  }
}

@media (max-width: 992px) {
  .our-blog {
    padding: 3rem 40px;
  }
}

@media (max-width: 768px) {
  .our-blog {
    padding: 3rem 30px;
  }
  
  .blog-intro {
    font-size: 1.1rem;
  }
  
  .point-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .our-blog {
    padding: 2rem 20px;
  }
  
  .blog-intro {
    font-size: 1rem;
  }
  
  .blog-point {
    gap: 0.75rem;
  }
}



/* blog ends */

/* Footer Starts  */

.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--dark-bg);
  justify-content: flex-start;
  padding: 0px 160px;
  height: 100vh;
  width: 100%;
  color: var(--text-primary);
  background-image: linear-gradient(
      rgba(26, 26, 26, 0.85),
      rgba(26, 26, 26, 0.85)
    ),
    url("https://via.placeholder.com/1920x1080");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-button {
  position: absolute;
  top: 100px;
  right: 100px;
  background-color: var(--primary-color);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: visible;
}

.rotating-container {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circular-text {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
}

.circular-text text {
  fill: white;
  font-size: 6.5px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.arrow {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.header-section {
  margin-top: 100px;
  margin-bottom: 50px;
}
.header-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
}
.header-section p {
  font-size: 18px;
  font-family: "Lora", serif;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 20px 0;
  font-family: "Lora", serif;
}
.main-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  font-family: "Lora", serif;
}
.logo-section {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.logo-icon {
  width: 150px;
  height: 80px;
  background-color: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-icon img {
  max-width: 100%;
  height: auto;
  display: block;
}
.logo-text {
  margin-bottom: 20px;
  font-size: 16px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  font-family: "Lora", serif;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  cursor: pointer;
}
.links-section {
  display: flex;
  gap: 100px;
  flex-grow: 1;
  justify-content: center;
  font-family: "Lora", serif;
}
.link-column {
  display: flex;
  flex-direction: column;
}
.link-column h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.link-column a {
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 16px;
}
.contact-section {
  width: 25%;
}
.contact-section h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.contact-section p {
  margin-bottom: 20px;
  font-size: 16px;
}
.copyright {
  margin-top: auto;
  padding-bottom: 30px;
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid #333;
  font-family: "Manrope", sans-serif;
} /* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .footer {
    padding: 0 20px;
    height: auto;
  }
  .contact-button {
    position: static;
    margin: 30px auto;
    width: 100px;
    height: 100px;
  }
  .circular-text {
    width: 100px;
    height: 100px;
  }
  .circular-text text {
    font-size: 5.5px;
  }
  .header-section {
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
  }
  .header-section h1 {
    font-size: 32px;
  }
  .header-section p {
    font-size: 16px;
  }
  .main-content {
    flex-direction: column;
    align-items: center;
  }
  .logo-section,
  .links-section,
  .contact-section {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .links-section {
    flex-direction: column;
    gap: 30px;
  }
  .link-column {
    align-items: center;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    padding: 20px 10px;
  }
} 

/* footer Ends */

.comparison-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  font-family: 'Manrope', sans-serif;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
}

.comparison-row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background-color: #333;
  color: #fff;
  font-weight: bold;
}

.comparison-row > div {
  flex: 1;
  padding: 1rem;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature {
  background-color: #f0f0f0;
  font-weight: 600;
}

.comparison-row.comparison-header .feature {
  background-color: #222;
  color: #fff;
}
