/* Welcome Section Styling */
.container.text-white {
    margin-top: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.5);
    animation: fadeIn 1.5s ease-in-out;
}

/* Heading Styling */
.container.text-white h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    animation: slideDown 1s ease;
}
.button {
    background-color: #00c853;

}

.button:hover {
    background-color: #00b342 !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Paragraph Styling */
.container.text-white p {
    font-size: 1.2rem;
    color: #f1f1f1;
    line-height: 1.6;
    animation: fadeUp 1.3s ease;
}

/* Service Cards */
.service-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    margin: 20px 0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #00c6ff;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #ddd;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(0, 198, 255, 0.15);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.4);
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideDown {
    from {transform: translateY(-30px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

@keyframes fadeUp {
    from {transform: translateY(30px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}








/* ================================
   WHY CHOOSE US SECTION
================================ */
.container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 40px 0 20px;
    text-align: center;
    animation: slideDown 1s ease;
}

.container p.text-center {
    font-size: 1.1rem;
    color: #ddd;
    animation: fadeUp 1.3s ease;
    transition: all 0.3s ease-in-out;
}

.container p.text-center:hover {
    transform: translateY(-6px) scale(1.02);
    color: #00c6ff;
    text-shadow: 0px 3px 12px rgba(0, 198, 255, 0.6);
}

/* Feature Cards */
.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    margin: 20px 0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeUp 1.2s ease;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #00c6ff;
    margin-bottom: 10px;
}

.feature-card p {
    color: #ccc;
    font-size: 1rem;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(0, 198, 255, 0.15);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.4);
}

/* ================================
   GET IN TOUCH SECTION
================================ */
.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.4);
    animation: fadeUp 1.5s ease;
}

.contact-form label {
    font-weight: 600;
    color: #f1f1f1;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.contact-form .form-control:focus {
    border-color: #00c6ff;
    box-shadow: 0 0 8px rgba(0,198,255,0.6);
    outline: none;
}








.welcome-section {
    background-image: url("../image/cinemography_img/image/cinemotagraphy-10.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
   
    padding: 80px 40px;
    position: relative;
    color: white;
}

/* Optional dark overlay */
.welcome-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    
    z-index: 0;
}

/* Bring text above overlay */
.welcome-section * {
    position: relative;
    z-index: 1;
}



/* Get in Touch Section */
.contact-section {
    background-image: url("../image/photoediting_img/img/sunset-1053673.jpg"); /* Change to your own */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
   
    padding: 80px 40px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Dark overlay for readability */
.contact-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
   
    z-index: 0;
}

/* Keep text & form above overlay */
.contact-section * {
    position: relative;
    z-index: 1;
}







/* ......................................... */
footer h5 {
  color: #fff;
}

footer .fa-solid {
  margin-right: 5px;
}

.footer-content {
  padding: 30px 80px 10px 80px;
}

.address p {
  width: 90%;
  color: gray;
}

.address ol {
  width: 90%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}

.useful-link a,
.popular-link a {
  text-decoration: none;
  color: gray;
}

.useful-link ul li,
.popular-link ul li {
  margin-bottom: 10px;
  list-style-type: none;
}

.useful-link ul li a:hover,
.popular-link ul li a:hover {
  letter-spacing: 0.5px;
  transition: 0.3s;
  color: #fff;
}

.form {
  background-color: transparent;
  border: 2px solid gray;
  padding: 5px 8px;
  color: gray;
  border-radius: 5px;
  width: 100%;
  margin-top: 7px;
}

.form:focus {
  border: 2px solid transparent;
  outline: 2px solid gray;
}

.company-name {
  color: #f04917;
  font-weight: 800;
  letter-spacing: 1px;
}

#myBtn {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 30px;
  z-index: 200;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #fc8000;
  color: white;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  display: none;
}

#myBtn:hover {
  background-color: #555;
}

.read-btn {
  position: relative;
  width: 11em;
  height: 4em;
  outline: none;
  transition: 0.1s;
  background-color: transparent !important;
  border: none;
  font-size: 13px;
  font-weight: bold;
  color: #ddebf0;
}


#clip {
  --color: #fc8000;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 5px double var(--color);
  box-shadow: inset 0px 0px 15px #fc8000;
  /* -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); */
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.arrow {
  position: absolute;
  transition: 0.2s;
  background-color: #f04917;
  top: 35%;
  width: 11%;
  height: 30%;
}

#leftArrow {
  left: -13.5%;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

#rightArrow {
  -webkit-clip-path: polygon(100% 49%, 0 0, 0 100%);
  clip-path: polygon(100% 49%, 0 0, 0 100%);
  left: 102%;
}

.read-btn:hover #rightArrow {
  background-color: #f04917;
  left: -15%;
  animation: 0.6s ease-in-out both infinite alternate rightArrow8;
}

.read-btn:hover #leftArrow {
  background-color: #f04917;
  left: 103%;
  animation: 0.6s ease-in-out both infinite alternate leftArrow8;
}

.corner {
  position: absolute;
  width: 4em;
  height: 4em;
  background-color: #fc8000;
  box-shadow: inset 1px 1px 8px #fc8000;
  transform: scale(1) rotate(45deg);
  transition: 0.2s;
}

#rightTop {
  top: -1.98em;
  left: 91%;
}

#leftTop {
  top: -1.96em;
  left: -3.0em;
}

#leftBottom {
  top: 2.10em;
  left: -2.15em;
}

#rightBottom {
  top: 45%;
  left: 88%;
}

.read-btn:hover #leftTop {
  animation: 0.1s ease-in-out 0.05s both changeColor8,
    0.2s linear 0.4s both lightEffect8;
}

.read-btn:hover #rightTop {
  animation: 0.1s ease-in-out 0.15s both changeColor8,
    0.2s linear 0.4s both lightEffect8;
}

.read-btn:hover #rightBottom {
  animation: 0.1s ease-in-out 0.25s both changeColor8,
    0.2s linear 0.4s both lightEffect8;
}

.read-btn:hover #leftBottom {
  animation: 0.1s ease-in-out 0.35s both changeColor8,
    0.2s linear 0.4s both lightEffect8;
}

.read-btn:hover .corner {
  transform: scale(1.25) rotate(45deg);
}

.read-btn:hover #clip {
  animation: 0.2s ease-in-out 0.55s both greenLight8;
  --color: #f04917;
}

@keyframes changeColor8 {
  from {
    background-color: #fc8000;
  }

  to {
    background-color: #f04917;
  }
}

@keyframes lightEffect8 {
  from {
    box-shadow: 1px 1px 5px #f04917;
  }

  to {
    box-shadow: 0 0 2px #f04917;
  }
}

@keyframes greenLight8 {
  from {}

  to {
    box-shadow: inset 0px 0px 32px #f04917;
  }
}

@keyframes leftArrow8 {
  from {
    transform: translate(0px);
  }

  to {
    transform: translateX(10px);
  }
}

@keyframes rightArrow8 {
  from {
    transform: translate(0px);
  }

  to {
    transform: translateX(-10px);
  }
}

