@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
/* Navbar Section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  background-color: #ffffff;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  height: 70px;
  position: relative;
  background-color: #e2e0e0;
}

/* LOGO */
.logo-with-text {
  display: flex;
  align-items: center;
  color: black;
}

.company-logo {
  height: 70px;
  margin-right: 10px;
}

.company-title {
  font-size: 18px;
  color: black;
  font-weight: 600;
}

/* DESKTOP MENU */
.main-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 600;
  font-family: "Arimo", sans-serif;
}

.main-menu a:hover {
  color: #ff6600;
}

/* SOCIAL ICONS */
.social-icons i {
  font-size: 22px;
  margin-left: 10px;
  color: black;
  cursor: pointer;
}

/* HAMBURGER */
.hamburger {
  font-size: 32px;
  color: black;
  display: none;
  cursor: pointer;
}

/* DROPDOWN BASE */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: black;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-family: "Arimo", sans-serif;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 260px;
  z-index: 9999;
  flex-direction: column;
  padding: 10px;
  border-radius: 4px;
  padding-left: 20px;
}

.dropdown-menu a {
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===============================
   MOBILE RESPONSIVE MENU
================================ */
/* ===============================
   MOBILE RESPONSIVE MENU (FIXED)
================================ */
@media (max-width: 768px) {

  /* Hamburger visible */
  .hamburger {
    display: block;
  }

  /* Hide desktop title */
  .company-title {
    display: none;
  }

  /* Slide-in mobile menu */
  .main-menu {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 260px;
    background: #111;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s ease-in-out;
    z-index: 99999;
  }

  /* When menu opens */
  .main-menu.show {
    right: 0;
  }

  /* Each item spacing equal */
  .main-menu a,
  .dropdown-toggle {
    color: white;
    padding: 11px 0;   /* Equal spacing */
    font-size: 18px;
     text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15); /* subtle divider */
  }

  /* HIDE ARROW ICONS IN MOBILE */
  .dropdown-toggle i {
    display: none !important;
  }

  /* Dropdown items in mobile */
  .dropdown-menu {
    display: none !important;
    background: transparent;
    padding-left: 25px;
  }

  .dropdown-menu a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: none;
  }

  /* Bullet for mobile submenu */
  .dropdown-menu a::before {
    content: "• ";
    color: #ff914d;
  }

  /* Logo smaller */
  .company-logo {
    height: 70px;
    margin-left: -10px;
  }
  .dropdown {
    width: 100%;
    text-align: left !important;
  }
}

/* VERY SMALL PHONES */
@media (max-width: 415px) {
  .company-logo {
    height: 60px;
    margin-left: 10px;
  }
}


/* ==============================
   DESKTOP VIEW (UNCHANGED)
================================ */
@media (min-width: 769px) {

  .top-nav {
    height: 100px;
  }

  .company-logo {
    height: 90px !important;
    margin-left: 20px;
  }

  .dropdown-menu a::before {
    content: "•";
    position: absolute;
    left: 8px;
    font-size: 20px;
  }
}

/* CLOSE BUTTON (ONLY MOBILE) */
.close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 100000;
}

@media (max-width: 768px) {
  .close-btn {
    display: block;
  }
}



html,
body {
  overflow-x: hidden;
  width: 100%;
}
body {
  padding: 20px;
  max-width: 100vw;
}
.banner-image {
  background: url("/2.jpg") no-repeat center center/cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  position: relative;
}

/* Our Story Section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.content-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.left-content {
  flex: 1;
  min-width: 300px;
}

.left-content h1 {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #1F2A44;
  font-family: 'Playfair Display', serif;
}

h1{
  padding-top: 30px;
}

.left-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-family: 'Segoe UI', sans-serif;;
}

.left-content a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
}

.left-content a::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #e74c3c;
  position: absolute;
  left: 0;
  bottom: 0;
}

.right-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.img-box:hover img {
  transform: scale(1.05);
}

.img-box span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-weight: bold;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
}


/* Media Queries */

@media (max-width: 1024px) {
  .left-content h1 {
    font-size: 36px;
  }

  .left-content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    padding: 20px;
  }

  .right-images {
    grid-template-columns: 1fr 1fr;
  }

  .left-content h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .right-images {
    grid-template-columns: 1fr;
  }

  .left-content h1 {
    font-size: 26px;
  }

  .left-content p {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .left-content h1 {
    font-size: 22px;
  }

  .left-content p {
    font-size: 13px;
  }
}



/* Circle Section */

.razor-section {
  padding: 180px 100px;
}

.razor-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.razor-left {
  flex: 1 1 40%;
}

.razor-right {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  border-left: 2px solid #e5e5e5;
  padding-left: 40px;
}

.breadcrumb {
  font-size: 19px;
  color: #7a7a7a;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
}

.razor-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.razor-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 90%;
  font-family:  'Segoe UI', sans-serif; 
}

.razor-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  text-decoration: none;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-red {
  color: #ff914d;
  font-weight: 600;
}

.btn-outline {
  border-bottom: 1px solid #ff914d;
  color: #ff914d;
}

.razor-card {
  /* display: flex; */
  align-items: flex-start;
  gap: 15px;
}

.razor-card i {
  font-size: 32px;
  color: #ff6600;
  min-width: 35px;
  margin-top: 5px;
  padding-bottom: 10px;
}


.razor-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.razor-card p {
  font-size: 15px;
  color: #555;
  font-family:  'Segoe UI', sans-serif;
}

.razor-card a {
  color: #b10000;
  text-decoration: underline;
}

/* =========================
   EXTRA SMALL DEVICES
   iPhone SE, Galaxy Fold
========================= */
@media (max-width: 320px) {

  .razor-section {
    padding: 80px 16px;
  }

  .razor-title {
    font-size: 26px;
  }

  .razor-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .razor-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .razor-card h3 {
    font-size: 18px;
  }

  .razor-card p {
    font-size: 13px;
  }
}


/* =========================
   SMALL DEVICES
   Small Android / iPhone SE
========================= */
@media (max-width: 480px) {

  .razor-section {
    padding: 90px 20px;
  }

  .razor-title {
    font-size: 28px;
  }

  .razor-right {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


/* =========================
   MEDIUM DEVICES
   Samsung, Oppo, Realme
========================= */
@media (max-width: 576px) {

  .razor-section {
    padding: 100px 24px;
  }

  .razor-title {
    font-size: 32px;
  }

  .razor-desc {
    font-size: 15px;
  }
}


/* =========================
   LARGE PHONES
   iPhone XR, 12, 13, 14
========================= */
@media (max-width: 768px) {

  .razor-container {
    flex-direction: column;
    gap: 40px;
  }

  .razor-left,
  .razor-right {
    width: 100%;
  }

  .razor-right {
    border-left: none;
    padding-left: 0;
    grid-template-columns: 1fr;
  }

  .razor-title {
    font-size: 34px;
  }
}


/* =========================
   TABLETS
   iPad, Samsung Tab
========================= */
@media (max-width: 992px) {

  .razor-section {
    padding: 120px 40px;
  }

  .razor-right {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .razor-title {
    font-size: 38px;
  }
}


/* =========================
   SMALL DESKTOP / LAPTOP
========================= */
@media screen and (max-width: 1152px) {

  .razor-section {
    padding: 150px 60px;
  }
}


/* =========================
   LARGE DESKTOP
========================= */
@media screen and (max-width: 1440px) {

  .razor-section {
    padding: 170px 40px;
  }
}



/* Infrastructure Section */

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.title {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  color: #1F2A44;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0px;
}

.card {
  background-color: #ff914d;
  border-radius: 20px;
  padding: 30px 20px;
  width: 300px;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.card:nth-child(2) {
  background-color: #ff914d;
}

.card:nth-child(3) {
  background-color: #ff914d;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  font-family: Roboto;
}
.razor-title {
    
    font-family: 'Playfair Display', serif;
}
.razor-card h3{
  font-family: 'Playfair Display', serif;
}
.start-project h1{
   font-family: 'Playfair Display', serif;
}
    .banner-image h1{
         font-family: 'Playfair Display', serif;
    }

/* Responsive Queries */

@media (max-width: 1024px) {
  .card {
    width: 45%;
  }
      .left-content h1 {
        font-family: 'Playfair Display', serif;
    }
}


@media (max-width: 768px) {
  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 15px;
  }

  .card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 28px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .title {
    font-size: 24px;
  }

  .card {
    padding: 10px 15px;
  }
}


/* Contact Section */

.start-project {
  text-align: center;
}

.start-project h1 {
  color: #1F2A44;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  margin-bottom: 20px;
}

.start-project p {
  font-size: 1.25rem;
  color: #14213d;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-family: 'Segoe UI', sans-serif;
}

.start-project button {
  padding: 12px 28px;
  background-color: #ff6600;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 6px;
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  transition: background 0.3s;
}

.start-project button:hover {
  background-color: white;
  border: 1px solid #ff914d;
  color: #ff914d;
}

/* Responsive Typography */
@media (max-width: 1024px) {
  .start-project h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .start-project h1 {
    font-size: 1.8rem;
  }

  .start-project p {
    font-size: 1rem;
  }

  .start-project button {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .start-project h1 {
    font-size: 1.5rem;
  }

  .start-project p {
    font-size: 0.95rem;
  }

  .start-project button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}


/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  font-size: 18px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
  background-color: #555;
  transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  #scrollTopBtn {
    width: 36px;
    height: 36px;
    font-size: 14px;
    bottom: 45px;
    right: 12px;
  }
}

@media (max-width: 360px) {
  #scrollTopBtn {
    width: 32px;
    height: 32px;
    font-size: 12px;
    bottom: 50px;
    right: 15px;
  }
}