@import url('https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=Caveat+Brush&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Permanent+Marker&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=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');

/* ===========================================================
   RESPONSIVE MEDIA QUERIES
   =========================================================== */

/* ---------- Large laptops / desktops ---------- */
@media (max-width: 3600px) {
  .navigation-ul {
    gap: 2vw;
  }
  .heading h1{
    font-size: 52px;
  }
  .heading{
    gap: 4vh;
  }
  .plans-card {
    width: 28vw;
  }
  .mail{
    font-size: 32px;
  }
  .call{
    font-size: 32px;
  }
  .slogan h1{
    font-size: 52px;
  }
  .slogan{
    flex-direction: row;
  }
  
}

/* ---------- Tablets (landscape & portrait) ---------- */
@media (max-width: 992px) {
  nav .logo h1 {
    font-size: 22px;
  }
  .navigation-ul {
    gap: 1.5vw;
    font-size: 14px;
  }
  #plans{
    flex-wrap: wrap;
  }
  .plans-card {
    width: 40vw;
    margin-bottom: 20px;
  }
  .container1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .home-image {
    margin-top: 20px;
  }
  
  .programmer{
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps aspect ratio */
  object-position: center;
  }

  footer {
    padding: 20px;
    font-size: 14px;
  }
  .mail{
    font-size: 28px;
  }
  .call{
    font-size: 28px;
  }
  .slogan{
    flex-wrap: wrap;
  }
  .slogan h1{
    font-size: 44px;
    margin-bottom: 3rem;
  }
}

/* ---------- Mobile phones (portrait) ---------- */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    gap: 5px; /* reduce spacing between logo and navigation */
  }
  .navigation-ul {
    flex-direction: row;
    gap: 10px;
    font-size: 18px;
  }
  .home-image{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slogan{
    flex-wrap: wrap;
  }
  .glass{
    gap: 20px;
  }
  .heading{
    gap: 6rem;
  }
  .heading h1 {
    font-size: 44px;
  }
  .programmer{
    width: 100%;
    position: relative;
    left: 10px;
  }
  .heading p {
    font-size: 14px;
    padding: 0 10px;
  }
  .plans-card {
    width: 80vw;
  }
  footer h1 {
    font-size: 18px;
    text-align: center;
  }
  footer h2 {
    font-size: 16px;
  }
  footer p, footer li {
    font-size: 13px;
  }
  #plans{
    flex-wrap: wrap;
  }
  #container1{
    flex-wrap: wrap;
  }
  .mail{
    font-size: 20px;
  }
  .call{
    font-size: 20px;
  }
}

/* ---------- Small mobile (very compact) ---------- */
@media (max-width: 480px) {
  .headings {
    font-size: 22px;
  }
  nav .logo h1 {
    font-size: 18px;
  }
  .navigation-ul {
    flex-direction: row;
    font-size: 12px;
    gap: 4px;
  }
    .slogan{
    flex-wrap: wrap;
    }

  .glass{
    gap: 15px;
  }
  .plans-card {
    width: 90vw;
    padding: 15px;
  }
  .programmer{
    width: 100%;
    position: relative;
    left: 30px;
  }
  footer {
    font-size: 12px;
  }
  footer h1 {
    font-size: 16px;
  }
  footer h2 {
    font-size: 14px;
  }
    #plans{
    flex-wrap: wrap;
  }
  #container1{
    flex-wrap: wrap;
  }
  .programmer{
    width: 150px;
  }
  .mail{
    font-size: 12px;
  }
  .call{
    font-size: 12px;
  }
}


/* *********************************************************************************************************************** */










::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;       /* hides scrollbar */
  -ms-overflow-style: none;    /* IE and old Edge */
}


*{
    margin: 0px;
    padding: 0px;
    user-select: none;
}

body{
    width: 100%;
    background-color: #080b11;
    color: white;
}

section{
    width: 100%;
    height: auto;
}

.bg-absolute{
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('./img/bg.jpg'); 
    background-size: cover;
    background-position: center;
}
.programmer{
      mix-blend-mode: normal;
      isolation: isolate;
}

.overlay{
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: orange; 
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 0;
}

.glow {
  color: white; /* base text color */
  text-shadow: 0 0 5px #ff6ec7,
               0 0 10px #ff6ec7,
               0 0 20px #ff6ec7,
               0 0 40px #ff6ec7; /* multiple shadows for stronger glow */
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 20vw;
    flex-wrap: wrap;
    position: sticky;
    top: 0px;
    z-index: 1;
}

.glass {
  backdrop-filter: blur(2px);           /* blur the background */
  -webkit-backdrop-filter: blur(10px);   /* Safari support */
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    font-weight: bold;
    cursor: pointer;
}

#name{
    color: rgb(185, 117, 0);
    font-family: 'Inter';
    -webkit-text-stroke: 0.1px black;
    font-size: 1.4rem;
}

.navigation-ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    font-weight: bold;
}

.navigation-ul li{
    font-size: 0.8rem;
    font-family: 'Inter';
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.navigation-ul li:hover {
    transform: scale(1.15);
    color: rgb(192, 126, 2);
}

.master{
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
    flex-direction: column; 
    gap: 5rem;
}

.pricetag{
    margin-bottom: 2rem;
}


#plans{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}
#home{
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15vh;
    padding: 2rem;
}
  .slogan{
      width:100%;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: row;
      gap: 1.5rem;
  }
  .heading{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }


.home-image{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container1{
    width: 70%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem;
}

.explain{
    width: 100%;
    font-family: 'Inter';
    font-size: 14px;
}

.heading{
    font-family: 'Inter';
    cursor: pointer;
}

.headings{
    font-size: 44px;
}

.home-image{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: right;
}

.plans-card{
    width: auto;
    height: auto;
    border: 2px solid white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Inter';
}

.plans-card h1{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.8rem;
}

.shadow-orange {
  box-shadow: 
    0 0 10px rgba(255, 165, 0, 0.7),
    0 0 20px rgba(255, 140, 0, 0.6),
    0 0 30px rgba(255, 120, 0, 0.5);
}



.plans-card-ul{
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem;
}

.plans-card-ul li{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 0.8rem;
}

.footer{
    width: 100%;
    height: auto;
}

.flex-gapped2{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}


/* footer stylintg */

    footer {
        background-color: #000000; /* Dark Gray */
        color: #f9fafb; /* Light Text */
        padding: 40px 20px;
    }

    footer h1 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 28px;
        color: #f9fafb;
    }

    .policy-block {
        background-color: #000000; /* Slightly lighter gray */
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .policy-block:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    .policy-block h2 {
        margin-top: 0;
        color: #fbbf24; /* Yellow/golden headings for emphasis */
        font-size: 22px;
        cursor: pointer;
        position: relative;
        padding-right: 25px;
    }

    .policy-block h2::after {
        content: '\25BC'; /* Down arrow */
        position: absolute;
        right: 0;
        font-size: 18px;
        transition: transform 0.3s;
    }

    .policy-content {
        margin-top: 10px;
        display: block;
    }

    .policy-block.collapsed .policy-content {
        display: none;
    }

    a {
        color: #60a5fa; /* Blue links */
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    footer p, footer ul {
        font-size: 14px;
        color: #d1d5db;
    }

    footer ul {
        list-style: disc;
        padding-left: 20px;
    }

    footer p.copy {
        text-align: center;
        margin-top: 30px;
        font-size: 13px;
        color: #9ca3af;
    }

    /* Responsive */
    @media (max-width: 768px) {
        footer {
            padding: 30px 10px;
        }
        .policy-block {
            padding: 15px;
        }
    }

    .flex{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .flex-gapped{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3vw;
    }

    #contact{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 2rem;
    }


    .contactinfo{
        font-family: 'Inter';
        background-color: black;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        border-radius: 15px;
        width: 88%;
    }

    .phone{
        gap: 2rem;
        background-color: rgb(188, 123, 3);
        border-radius: 18px;
        width: 50%;
        height: auto;
    }

    .email{
        gap: 2rem;
        background-color: rgb(188, 123, 3);
        border-radius: 18px;
        width: 50%;
        height: auto;
    }

    h3{
        padding-top: 2rem;
    }

    form{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }



.glow-border {
  position: relative;
  border-radius: 20px;          /* Rounded corners */
  border: 3px solid;            /* Border thickness */
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, #ff9a3c, #ff6f00, #ffd270, #ff9a3c);
  padding: 1rem;                /* Optional inner spacing */
  background-color: #111;       /* Optional background */
  overflow: hidden;
  animation: glow-border 3s linear infinite;
}

/* Animate the border gradient */
@keyframes glow-border {
  0% {
    border-image-source: linear-gradient(90deg, #ff9a3c, #ff6f00, #ffd270, #ff9a3c);
  }
  50% {
    border-image-source: linear-gradient(270deg, #ff9a3c, #ff6f00, #ffd270, #ff9a3c);
  }
  100% {
    border-image-source: linear-gradient(90deg, #ff9a3c, #ff6f00, #ffd270, #ff9a3c);
  }
}

footer{
    font-family: 'Inter';
    border-radius: 18px;
}







